Reuse Of Javascript Code With Asp.net
I've recently taken over development of a website written in asp.net. Before taking this on, I have spent very little time with web applications. As I have no experience in this ar
Solution 1:
Shudder
There is nothing worse than code duplicated all over the place.
The simplest thing to do is copy the function in to a single js file, delete the code from all of the other js files and make sure the new script file is included in any pages that call one of the functions which use it using the script tag in the HTML.
Solution 2:
Try a module manager for javascript like
Then place your functions in a module and require
that module in your pages.
Solution 3:
Yeah man just take the method and put it in a .js file, pop it into a folder in your solution, and then in each .aspx page you need it, just import it:
<scripttype="text/javascript"src="<YOUR_LOCATION>"></script>
Post a Comment for "Reuse Of Javascript Code With Asp.net"