Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SERVER-SIDE JAVASCRIPT

Status
Not open for further replies.

apexinternet

Programmer
May 28, 2001
30
0
0
US
DOES MICROSOFT IIS 5+ SUPPORT SERVER-SIDE JAVASCRIPT?

IF SO HOW DO YOU WRITE IT?

I AM USING
<SERVER>
BLAH
</SERVER>

AND IT DOESNT LIKE IT

THANKS
CHRIS

JESUS RULEZ!
 
IIS uses JScript not JavaScript, for furture references.

<%@ language=Jscript %>
<html>
<body>
<%test=&quot;hello&quot;%>
<% for(i=1;i<=100;i++){ %>
<%=test%> World !
<% } %>
</body>
</html>


Uggg --- Jesus!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top