直播中
關(guān)于這個(gè)應(yīng)用程序
我們的應(yīng)用程序中的第一個(gè)界面包含在index.asp 中,由一個(gè)注冊(cè)頁組成,其中有兩個(gè)輸入域,一個(gè)是用戶名,另一
個(gè)是口令。非會(huì)員要想?yún)⒓涌荚嚨脑挶仨氁?cè)。這一頁是初始屏幕,為用戶提供用戶名和口令的輸入框。
需要注意的是,這兩個(gè)將要批準(zhǔn)的會(huì)員域應(yīng)該有客戶機(jī)端的JavaScript 確認(rèn),以便不把它們作為空白域來傳遞。
if (theForm.username.value == "")
{
alert("Please enter the \"User Name\"");
theForm.username.focus();
return (false);
}
if (theForm.password.value == "")
{
alert("Please enter the \"Password\"");
theForm.password.focus();
return (false);
}