
Server Side writing Client Side scripts
I'm trying to invoke the client side Alert function from a server side
script. The code I have follows. The only thing that happens is what I want
for client side script ends up in the web page. Can this be done and if so,
where did I go wrong?
If( nSubsystems = 0 ) Then
Response.Write "<script LANGUAGE='VBScript'><br>"
Response.Write "<!--<br>"
Response.Write "Alert('You do NOT have create access on any
subsystems!')<br>" Response.Write "--><br>"
Response.Write "</script><br>"
End If
Paul