I have an HTML helper textBox like this:
@Html.TextBox("txt1") <br />
Now I want to fire a javascript onchange event on this textbox. Is it possible to do so or should I use an HTML input type instead.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can specify html attributes using the htmlAttributes parameter of the TextBox Html helper method like so:
See: InputExtensions.TextBox Method
From the above link: