why do I get an error on the following code:
<body>
<%
Response.Write" <script language = ""vbscript""> "
Response.Write" res = MsgBox (""Do you want to edit appliance?"",4,""Edit Appliance"") "
Response.Write" if res=7 then"
Response.Write" end if"
Response.Write" </script>"
%>
This code does work:
<body>
<%
Response.Write" <script language = ""vbscript""> "
Response.Write" res = MsgBox (""Do you want to edit appliance?"",4,""Edit ppliance"") "
Response.Write" </script>"
%>
It seems that I have a syntax error, please help...







Bookmarks