if (TextBox1.Text.Length<500 || TextBox1.Text.Length == 0)
{
Page.ClientScript.RegisterStartupScript(this.GetType(),"Scripts","<script>alert('Input is empty or too short.');</script>");
}
Yukarıdaki kodu denedim ama çalışmadı.Textbox boş ya da 500 karakterden az ise hata mesajı verdirmek istiyorum
{
Page.ClientScript.RegisterStartupScript(this.GetType(),"Scripts","<script>alert('Input is empty or too short.');</script>");
}
Yukarıdaki kodu denedim ama çalışmadı.Textbox boş ya da 500 karakterden az ise hata mesajı verdirmek istiyorum
Bende çalıştı.
TextBox1.Text = "123";
if (TextBox1.Text.Length < 4 || TextBox1.Text.Length == 0)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Scripts", "<script>alert('Input is empty or too short.');</script>");
}
Bunda uyardı mesela, "1234" yapınca uyarmadı, boş olunca yine uyardı.
Abdurrahman
1