Using ASP.Net variables in your Javascript codeOne of the cool things about ASP.Net is that you can make use of your variables (from your ASP.Net code) in your Javascript code. If you have a variable called aVarName in ASP.Net, here's the Javascript code that makes use of the value of that variable:
var jVarName; jVarName = '<%#aVarName%>';
|

