一下是這個代碼:
只允許 用戶名輸入:用戶名稱的開頭,必須為0~9、a~z或A~Z !
復制代碼 代碼如下:
protected void Button3_Click(object sender, EventArgs e)
{
int error_count = 0; //用於識別用戶名的合法性
string str = TextBox1.Text.Trim();
if (str == string.Empty)
{
Response.Write("用戶名稱不能為空!");
return;
}
str = str.Substring(0, 1); //用戶名稱第1個字符
string strchar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z";
string[] VcArray = strchar.Split(',');
for (int i = 0; i < VcArray.Length; i++)
{
if (str != VcArray[i])
{
error_count++;
}
else
{
error_count = 0; //如果用戶名稱合法,將變量error_count初始化為0,
break;
}
}
if (error_count > 0) //如果變量error_count大於0,用戶名稱非法。
{
Response.Write("<script>alert(' 用戶名稱的開頭,必須為0~9、a~z或A~Z !')</script>");
}
else
{
Response.Write("<script>alert(' 合法用戶名稱,可以使用!')</script>");
}
}