↧
Answer by Wyatt Barnett for client side validation and server side validation...
Last time I checked, it wasn't valid HTML to have form elements, such as inputs, outside a form. In any case, it won't work on the server-side because ASP.NET does not know the textbox exists. I could...
View ArticleAnswer by m.edmondson for client side validation and server side validation...
Sure, if you set the input to runat the server and give it an ID:<input type="text" name="first name" runat="server" id="myserversideid"/>You can then use the validation controls as you would...
View Articleclient side validation and server side validation in java script and asp.net...
hi all i want to know that can we validate a control which is out side a form element in asp.net(server side validation)and outside a form element in html(client side validation) let's take a closer...
View Article