我尝试过以下代码,但没有任何更改,也没有显示错误消息。
if (TextBox1.Text.Length<500 || TextBox1.Text.Length == 0)
{
Page.ClientScript.RegisterStartupScript(this.GetType(),"Scripts","<script>alert('Input is empty or too short.');</script>");
}
答案 0 :(得分:1)
以下示例将执行javascript函数,该函数将检查TextBox1
的有效性,并在长度小于500时显示错误消息。如果长度为500或更长,则验证通过,服务器端{ {1}}将执行。
Button1_Click