English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have opened up notepad...and typed this:


<%
response.write("Hello World!")
%>


And then I saved as .asp file. But when I open the file, I just see blank page...no "hello world" message

2007-04-15 03:58:38 · 3 answers · asked by ╚kco®games 4 in Computers & Internet Programming & Design

3 answers

ASP is interpreted by Microsoft IIS server and returned to clients as HTML. What you need is IIS or some other server software that can handle ASP pages. Remember that the client would see the following once interpreted:


Hello World!


They wouldn't see the native ASP code. Just opening the .asp with a browser should return a blank page or an error (depending on which browser version) as it can't process the script.

2007-04-15 04:12:24 · answer #1 · answered by Jim Maryland 7 · 0 0

It has to be running on a web server with ASP support or it won't work.

2007-04-15 04:56:46 · answer #2 · answered by LorettoBoy 4 · 0 0

you should instal IIS

2007-04-15 04:02:26 · answer #3 · answered by Anonymous · 0 0

fedest.com, questions and answers