I have a web app, and on one page, when it loads I start a Javascript routine that starts a timer:
<body MS_POSITIONING="GridLayout
" onLoad="InitializeTimer()"
>
At the appropriate time, the Javascript timer triggers another Javascript handler that puts up an alert.
I need to alter the alert depending upon a VB.Net session variable.
In my VB.Net code behind, I can look up/assemble the correct text, but tow can I pass the variable text to the JavaScript?
Start Free Trial