快速业务通道

ASP.NET服务器控件PleaseWaitButton

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-21
如果是这种情况的话,我们定义的PleaseWait()函数会加在已经存在的onclick代码的最后面,紧跟在客户端检查的boolin变量Page_IsValid后面。这个变量代表是否使用了验证控件。如果Page_IsValid的值是false,"Please wait"信息将不显示。如果为True则显示。

private string ModifyJavaScriptOnClick(string sHtml)
{
   // Thanks to CodeProject member KJELLSJ (Kjell-Sverre Jerijaervi)
   // for code ideas to allow the button to work with client-side validation

   string sReturn = "";
   string sPleaseWaitCode = GeneratePleaseWaitJavascript();

   // is there an existing onclick attribute?
   Regex rOnclick = new Regex("onclick=\"(?<onclick>[^\"]*)");
   Match mOnclick = rOnclick.Match(sHtml);
   if (mOnclick.Success)
   {
     // there is an existing onclick attribute;
     // add our code to the end of it; if client-side
     // validation has been rendered, make sure
     // we check to see if the page is valid;
     string sExisting = mOnclick.Groups["onclick"].Value;
     string sReplace = sExisting
         + (sExisting.Trim().EndsWith(";") ? "" : "; ");
     if (IsValidatorIncludeScript() && this.CausesValidation)
     {
       // include code to check if the page is valid
       string sCode = "if (Page_IsValid) " + sPleaseWaitCode
               + " return Page_IsValid;";
       // add our code to the end of the existing onclick code;
       sReplace = sReplace + sCode;
     }
     else
     {
       // don''t worry about the page being valid;
       sReplace = sReplace + sPleaseWaitCode;
     }

     // now substitute our onclick code
     sReplace = "onclick=\"" + sReplace;
     sReturn = rOnclick.Replace(sHtml, sReplace);
   }
   else
   {
     // there isn''t an existing onclick attribute;
     // add ours
     int i = sHtml.Trim().Length - 2;
     string sInsert = " onclick=\"" + sPleaseWaitCode + "\" ";
     sReturn = sHtml.Insert(i, sInsert);
   }
   return sReturn;

}

这个IsValidatorIncludeScript() 利用上面的检查来查看是否有使用页面注册的asp.net验证控件的标准Javascript代码块。下面则用一个简单的方法测试了是否有验证代码和像Page_IsValid的变量存在。

private bool IsValidatorIncludeScript()
{
   // return TRUE if this page has registered javascript
   // for client-side validation; this code may not be registered
   // if ASP.NET detects what it thinks (correctly or incorrectly)
   // is a down-level browser.

   return this.Page.IsStartupScriptRegistered("ValidatorIncludeScript");
}

下面这个GeneratePleaseWaitJavascript()构建了包含在onclick属性中的PleaseWait() Javascript函数。我们可以通过检查控件的属性来决定想要的布局。

private string GeneratePleaseWaitJavascript()
{
   // create a JavaScript "PleaseWait()" func

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号