當前位置: 首頁>>代碼示例>>C#>>正文


C# Page.GetPostBackEventReference方法代碼示例

本文整理匯總了C#中System.Web.UI.Page.GetPostBackEventReference方法的典型用法代碼示例。如果您正苦於以下問題:C# Page.GetPostBackEventReference方法的具體用法?C# Page.GetPostBackEventReference怎麽用?C# Page.GetPostBackEventReference使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Web.UI.Page的用法示例。


在下文中一共展示了Page.GetPostBackEventReference方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: DisableSubmitBotton

        //當用戶點擊按鈕時,將其置為無效
        public void DisableSubmitBotton(Page mypage, System.Web.UI.WebControls.Button submitbutton)
        {
            RegisterAdminPageClientScriptBlock();

            //保證 __doPostBack(eventTarget, eventArgument) 正確注冊
#if NET1
            mypage.GetPostBackEventReference(submitbutton,"");        
#else
            mypage.ClientScript.GetPostBackEventReference(submitbutton, "");
#endif

            StringBuilder sb = new StringBuilder();

            //保證驗證函數的執行
            sb.Append("if (typeof(Page_ClientValidate) == 'function') { if (Page_ClientValidate() == false) { return false; }}");

            // disable所有submit按鈕
            sb.Append("disableOtherSubmit();");

            //sb.Append("document.getElementById('Layer5').innerHTML ='正在運行操作</td></tr></table><BR />';");
            sb.Append("document.getElementById('success').style.display ='block';");

#if NET1   
    //用__doPostBack來提交,保證按鈕的服務器端click事件執行
            sb.Append(this.GetPostBackEventReference(submitbutton,""));   
#else
            sb.Append(this.ClientScript.GetPostBackEventReference(submitbutton, ""));
#endif
            sb.Append(";");
            submitbutton.Attributes.Add("onclick", sb.ToString());
        }
開發者ID:wenysky,項目名稱:dnt31-lite,代碼行數:32,代碼來源:SetupPage.cs

示例2: 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
		}
開發者ID:nobled,項目名稱:mono,代碼行數:30,代碼來源:PageCas.cs


注:本文中的System.Web.UI.Page.GetPostBackEventReference方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。