推薦:說說對象的複制以下為引用的內容:<%Dim oConn,oRsSet oConn = Server.CreateObject(ADODB.Connection)Set ors = Server.CreateObject(ADODB.R
表單在提交前我們通常會用客戶端JS對其內容進行驗證,通常都是寫一個函數然後在onsumbit事件中調用,如下:
以下為引用的內容: <html> <head> <script language=javascript> function check() { if(form1.aaa.value == ){return false;} if(form1.bbb.value == ){return false;} return true; } </script> </head> <body> <form id=form1 name=form1 method=post action=default.asp onsubmit=return check();> <p> <input name=aaa type=text id=aaa /> </p> <p> <input name=bbb type=text id=bbb /> </p> <p> <input type=submit name=Submit value=提交/> </p> </form> </body> </html> |
那如果是用多個函數對錶單進行驗證,應當怎麼寫函數,怎麼調用呢?其實也很簡單,如下例子:
以下為引用的內容: <html> <head> <script language=javascript> function check1() { if(form1.aaa.value == ) { return false; }else{ return true; } } function check2() { if(form1.bbb.value == ) { return false; }else{ return true; } } </script> </head> <body> <form id=form1 name=form1 method=post action=default.asp onSubmit=return (check1() && check2());> <p> <input name=aaa type=text id=aaa /> </p> <p> <input name=bbb type=text id=bbb /> </p> <p> <input type=submit name=Submit value=提交/> </p> </form> </body> </html> |
原文: http://www.mzwu.com/article.asp?id=1078
分享:ASP實例:利用緩存提高數據顯示效率實例演示:先建立一個簡單的數據庫,寫個function讀取一下,寫入一個dim變量temp中:ASP代碼以下為引用的內容:<% Function DisplayRec