|
From: S N on 6 Apr 2008 17:25 i am attaching the error , and then i am pasting the full asp code below it. please help error message Microsoft VBScript compilation error '800a0400' Expected statement /test11.asp, line 7 option explicit ^ Now the asp file ______________________ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <% @LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% Response.CharSet = "UTF-8" %> <% option explicit %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>New Page 1</title> </head> <body> <% response.write "hello" %> </body> </html> >
From: "Jon Paal [MSMD]" Jon nospam Paal on 6 Apr 2008 18:27 out of order commands... try this: <% @LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% option explicit %> <% Response.CharSet = "UTF-8" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>New Page 1</title> </head> <body> <% response.write "hello" %> </body> </html>
|
Pages: 1 Prev: how to save page address in browser history Next: http://localhost not working ,IIS 5.1 |