System.Web.UI.Page.GetPostBackEventReference C# (CSharp) 메소드

GetPostBackEventReference() 개인적인 메소드

private GetPostBackEventReference ( Control control ) : string
control Control
리턴 string
	public string GetPostBackEventReference (Control control)
	{
		return scriptManager.GetPostBackEventReference (control, String.Empty);
	}

Same methods

Page::GetPostBackEventReference ( Control control, string argument ) : string

Usage Example

예제 #1
0
 public static string DblClickBlock(System.Web.UI.Page Page, System.Web.UI.Control C)
 {
     return("if (typeof(Page_ClientValidate) == 'function') { if (Page_ClientValidate() == false) { return false; }} " +
            "this.disabled = true; " +
            Page.GetPostBackEventReference(C) +
            ";");
 }
All Usage Examples Of System.Web.UI.Page::GetPostBackEventReference
Page