首页上一页 1 下一页尾页 2 条记录 1/1页
如果要在TextBox中让他必须要有信息应该怎么做的?
发表在ASP.NET图书答疑
2009-05-17
是否精华
是
否
版块置顶:
是
否
string name = this.txtName.Text;
if (this.txtName.Text == "") //
{ //
Response.Write("请输入必要的信息!"); //
} //
string sex = "先生";
if (sex1.Checked)
sex = "女士";
Response.Redirect("~/4.aspx?Name=" + name + "&Sex=" + sex);
以上例子,在没有输入姓名的同时,确认提交之后.是没有显示姓名!
if (this.txtName.Text == "") //
{ //
Response.Write("请输入必要的信息!"); //
} //
string sex = "先生";
if (sex1.Checked)
sex = "女士";
Response.Redirect("~/4.aspx?Name=" + name + "&Sex=" + sex);
以上例子,在没有输入姓名的同时,确认提交之后.是没有显示姓名!