注銷

          注銷

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            112 隨筆 :: 7 文章 :: 18 評論 :: 0 Trackbacks

          .net中客戶端驗證可以用微軟自帶的驗證控件,但明顯沒有直接寫的Javascript來得簡單有效,請參照以下三步:
          第一:Form如下:

          < form?id = " Form1 " ?method = " post " ?runat = " server " >
          ????????????
          < FONT?face = " 宋體 " ></ FONT >< FONT?face = " 宋體 " ></ FONT >
          ????????????
          < br >
          ????????????
          1 .?Name?: < br >
          ????????????
          < asp:TextBox?ID = " txtName " ?runat = " server " ? />< br >
          ????????????
          2 .?Email?: < br >
          ????????????
          < asp:TextBox?ID = " txtEmail " ?runat = " server " ? />< br >
          ????????????
          3 .?Web?URL?: < br >
          ????????????
          < asp:TextBox?ID = " txtWebURL " ?runat = " server " ? />< br >
          ????????????
          4 .?Zip?: < br >
          ????????????
          < asp:TextBox?ID = " txtZIP " ?runat = " server " ? />< br >
          ????????????
          5 .Content < br >
          ????????????
          < asp:TextBox?ID = " txtContent " ?runat = " server " ?TextMode = " MultiLine " ?Width = " 504px " ?Height = " 80px " ? />
          ????????????
          < br >
          ????????????
          < asp:Button?ID = " btnSubmit " ?OnClientClick = " ?return?validate() " ?runat = " server " ?Text = " Submit " ? />
          ????????
          </ form >

          第二:調用函數如下(可自行擴展)

          <script?language="javascript"?type="text/javascript">
          ????????????????
          function?validate()
          ????????????????????????
          {
          ????????????????????????????
          if?(document.getElementById("<%=txtName.ClientID%>").value=="")
          ????????????????????????????
          {
          ????????????????????????????????????????alert(
          "Name?Feild?can?not?be?blank");
          ????????????????????????????????????????document.getElementById(
          "<%=txtName.ClientID%>").focus();
          ????????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          if(document.getElementById("<%=txtEmail.ClientID?%>").value=="")
          ????????????????????????????
          {
          ????????????????????????????????????????alert(
          "Email?id?can?not?be?blank");
          ????????????????????????????????????????document.getElementById(
          "<%=txtEmail.ClientID?%>").focus();
          ????????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          //?var?emailPat?=?/^(".*"|[A-Za-z]w*)@([d{1,3}(.d{1,3}){3}]|[A-Za-z]w*(.[A-Za-z]w*)+)$/;
          ????????????????????????????//var?emailPat?=?"w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*";
          ????????????????????????????//var?emailPat????=????/^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/;
          ????????????????????????????//var?emailPat????=????'^([w]+@([w]+.)+[a-zA-Z]{2,9}(s*;s*[w]+@([w]+.)+[a-zA-Z]{2,9})*)$';
          ????????????????????????????var?emailPat????=????"^[a-zA-Z0-9_.]+@[a-zA-Z0-9-]+[.a-zA-Z]+$";
          ????????????????????????????
          var?emailid=document.getElementById("<%=txtEmail.ClientID?%>").value;
          ????????????????????????????
          var?matchArray?=?emailid.match(emailPat);
          ????????????????????????????
          if?(matchArray?==?null)
          ????????????????????????????
          {
          ????????????????????????????????????alert(
          "Your?email?address?seems?incorrect.?Please?try?again.");
          ????????????????????????????????????document.getElementById(
          "<%=txtEmail.ClientID?%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          if(document.getElementById("<%=txtWebURL.ClientID?%>").value=="")
          ????????????????????????????
          {
          ????????????????????????????????????alert(
          "Web?URL?can?not?be?blank");
          ????????????????????????????????????document.getElementById(
          "<%=txtWebURL.ClientID?%>").value="http://"
          ????????????????????????????????????document.getElementById(
          "<%=txtWebURL.ClientID?%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          var?Url="^[A-Za-z]+://[A-Za-z0-9-_]+\.[A-Za-z0-9-_%&?/.=]+$"
          ????????????????????????????
          var?tempURL=document.getElementById("<%=txtWebURL.ClientID%>").value;
          ????????????????????????????
          var?matchURL=tempURL.match(Url);
          ????????????????????????????
          if(matchURL==null)
          ????????????????????????????
          {
          ????????????????????????????????????alert(
          "Web?URL?does?not?look?valid");
          ????????????????????????????????????document.getElementById(
          "<%=txtWebURL.ClientID?%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          if?(document.getElementById("<%=txtZIP.ClientID%>").value=="")
          ????????????????????????????
          {
          ????????????????????????????????????alert(
          "Zip?Code?is?not?valid");
          ????????????????????????????????????document.getElementById(
          "<%=txtZIP.ClientID%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          var?digits="0123456789";
          ????????????????????????????
          var?temp;
          ????????????????????????????
          for?(var?i=0;i<document.getElementById("<%=txtZIP.ClientID?%>").value.length;i++)
          ????????????????????????????
          {
          ????????????????????????????????????temp
          =document.getElementById("<%=txtZIP.ClientID%>").value.substring(i,i+1);
          ????????????????????????????????????
          if?(digits.indexOf(temp)==-1)
          ????????????????????????????????????
          {
          ????????????????????????????????????????????????alert(
          "Please?enter?correct?zip?code");
          ????????????????????????????????????????????????document.getElementById(
          "<%=txtZIP.ClientID%>").focus();
          ????????????????????????????????????????????????
          return?false;
          ????????????????????????????????????}

          ????????????????????????????}

          ????????????????????????????
          var?ContentLength="";
          ????????????????????????????
          if?(document.getElementById("<%=txtContent.ClientID%>").value=="")
          ????????????????????????????
          {
          ????????????????????????????????????alert(
          "Content?is?need!");
          ????????????????????????????????????document.getElementById(
          "<%=txtContent.ClientID%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          else?if(document.getElementById("<%=txtContent.ClientID%>").value.length>100)
          ????????????????????????????
          {
          ????????????????????????????????alert(
          "Content?is?Too?Long,and?More?than?100?Chars!");
          ????????????????????????????????????document.getElementById(
          "<%=txtContent.ClientID%>").focus();
          ????????????????????????????????????
          return?false;
          ????????????????????????????}

          ????????????????????????????
          return?true;
          ????????????????????????}

          ????????
          </script>


          第三:Page_Load事件中加入一行:

          private?void?Page_Load(object?sender,?System.EventArgs?e)
          ????????
          {
          ?????????????btnSubmit.Attributes.Add(
          "onclick",?"return?validate()");
          ????????}

          posted on 2006-11-30 09:12 注銷..... 閱讀(414) 評論(0)  編輯  收藏 所屬分類: .net摘要
          主站蜘蛛池模板: 额尔古纳市| 安丘市| 香港 | 双柏县| 沙湾县| 盘山县| 洮南市| 法库县| 临夏市| 松潘县| 凌云县| 尤溪县| 贡山| 沐川县| 泰来县| 博湖县| 厦门市| 宝坻区| 桐柏县| 布尔津县| 扶沟县| 黔西县| 抚松县| 金乡县| 旬阳县| 房产| 岳阳县| 桃园县| 南涧| 迁西县| 东港市| 陈巴尔虎旗| 治县。| 茶陵县| 安丘市| 诸城市| 稷山县| 辉南县| 班玛县| 十堰市| 积石山|