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