I\'m writing a web page in ASP.NET. I have some JavaScript code, and I have a submit button with a click event.
Is it possible to call a method I created in ASP with
You might want to create a web service for your common methods. Just add a WebMethodAttribute over the functions you want to call, and that's about it. Having a web service with all your common stuff also makes the system easier to maintain.