0

I cant Implement html 5 on asp:textboxes, everything I found on the internet was implemented on input: not on asp:textboxes

now I found a very useful validator for textboxes, however, I can't make it work with asp:textbox

here are the codes:

<script>
$(document).ready(function () {
$('form').h5Validate();
});
 </script>

<input id="name" name="name" type="text" placeholder="Bob" title="Your name is required." required />

I want to make it work with asp:textbox

1 Answer 1

3

asp:textbox is a server side tag and after client request, server will return html with <input>; so all options for <input> also can be used for asp:textbox.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.