1.How to call dynamic javascript library function in asp.net
http://msdn.microsoft.com/en-us/library/aa479011.aspx look if this works.
Don’t be idiot by arguing with an idiot .
i want to call seprate file with extension .js how can i do that
I don't know how it is done exactly with .NET (maybe there are some helper procedures, functions and standards you need to follow. Do it on your own), but I can tell you that you will need to output the following code for the browser:
<script language="Javascript" src="http://location.to/js/file[dot]js"></script>
eg, if your js is at http://www.example.org/myjsfunctions.js, you will need to output:
<script language="Javascript" src="http://www.example.org/myjsfunctions.js"></script>
Now, to use a function say myfunction() defined in the js file, you will need to output:
<script language="Javascript">//other js code heremyfunction();//other js code here</script>
Hope this helped. However, if you let us know what you want to accomplish using JS, and which js you wish to use, then we can assist you better.
Regardsubuntubay
MSDNNepal.net