i have a register form & in that form i have a 2 textboxes
for entering name&age.my doubt is that how can i provide
error message like "invalid entry" when user enter a
invalid name/age(eg:user enter name as #%%%##daff,and age
as 1000.)in that textboxes.I want code.
Answers were Sorted based on User's Feedback
Answer / saravanakumar
We can use RegularExpressionValidator to validate the textbox content.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rajeev kumar varshney
char[] SpecialChars = "#%".ToCharArray();
string text=TextBox1.Text;
int indexOf = text.IndexOfAny(SpecialChars);
if(indexOf != -1)
{
Page.ClientScript.RegisterStartupScript("this.getType(),"a","<script>alert('Please do not enter % or # in name');</script>");
}
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / satheshkumar
name textbox should follow the reqularexpersion valitator and age textbox should follow the range validator
Is This Answer Correct ? | 0 Yes | 0 No |
Where you store Connection string in "Web.Config" file in ASP.NET?
0 Answers Sans Pareil IT Services,
How do you trap errors in ASP and how do you invoke a component in ASP ?
Can you clarified A Web service can only be written in .NET or not?
What is the difference between application object and session object?
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
What is the difference between typeof() vs gettype()?
What is the difference between rest and restful?
Differnce between Control an View State
What is the biggest disadvantage of “Other Return Types” in Web API?
What is the difference between Server.Transfer and Response.Redirect?
How can we call webservices in Banking Applications? and where we are using it?
What is viewstate parameter?