本文整理匯總了C#中System.Web.UI.Page.GetPostBackClientEvent方法的典型用法代碼示例。如果您正苦於以下問題:C# Page.GetPostBackClientEvent方法的具體用法?C# Page.GetPostBackClientEvent怎麽用?C# Page.GetPostBackClientEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Web.UI.Page
的用法示例。
在下文中一共展示了Page.GetPostBackClientEvent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Methods_Deny_Unrestricted
public void Methods_Deny_Unrestricted ()
{
Page p = new Page ();
p.DesignerInitialize ();
Assert.IsNotNull (p.GetPostBackClientEvent (control, "mono"), "GetPostBackClientEvent");
Assert.IsNotNull (p.GetPostBackClientHyperlink (control, "mono"), "GetPostBackClientHyperlink");
Assert.IsNotNull (p.GetPostBackEventReference (control), "GetPostBackEventReference(control)");
Assert.IsNotNull (p.GetPostBackEventReference (control, "mono"), "GetPostBackEventReference(control,string)");
Assert.AreEqual (0, p.GetTypeHashCode (), "GetTypeHashCode");
Assert.IsFalse (p.IsClientScriptBlockRegistered ("mono"), "IsClientScriptBlockRegistered");
Assert.IsFalse (p.IsStartupScriptRegistered ("mono"), "IsStartupScriptRegistered");
p.RegisterArrayDeclaration ("arrayname", "value");
p.RegisterClientScriptBlock ("key", "script");
p.RegisterHiddenField ("name", "hidden");
p.RegisterOnSubmitStatement ("key", "script");
p.RegisterRequiresPostBack (new HtmlTextArea ());
p.RegisterRequiresRaiseEvent (new HtmlAnchor ());
p.RegisterStartupScript ("key", "script");
p.Validate ();
p.VerifyRenderingInServerForm (control);
#if NET_2_0
p.Controls.Add (control);
Assert.IsNotNull (p.FindControl ("mono"), "FindControl");
p.RegisterRequiresControlState (control);
Assert.IsTrue (p.RequiresControlState (control), "RequiresControlState");
p.UnregisterRequiresControlState (control);
Assert.IsNotNull (p.GetValidators (String.Empty), "GetValidators");
p.Validate (String.Empty);
#endif
}