sure, here ya go
Code:<%@Language=VBScript EnableSessionState=False%> <% option explicit dim myVar myVar = 7 %> <html> <head> <script language="Javascript"> function sayHi() { window.alert("The Value Is: " + <%= myVar %>); } </script> </head> <body onload="sayHi();"> Hi </body> </html>




Reply With Quote