How can i use Javascript in ASP.NET page?

  • Thread starter Thread starter Armin
  • Start date Start date
A

Armin

I like to use javascript for my form validation is there any way to use java
script in asp.net pages?

Thanks
 
Yes, there are several ways. You can enter it as static code in the .aspx
file, include it using the Page.RegisterClientScriptBlock or
Page.RegisterStartupScript method, or have it generated using one of the
Validator Controls. For more details on these, you can either see the
documentation or feel free to ask. Good Luck!
 
Back
Top