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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iis and asp

Status
Not open for further replies.

sharonc

Programmer
Jan 16, 2001
189
US
I have an html file with embedded html and vbscript. Do I need to place this file under inetpub\
If so, can I just add the asp folder or how do I create it?

Thank you for your help
 
If you have an HTML page with VBScript, you really either have a DHTML page (client-side VBScript) or an ASP page (server-side VBScript).

Where did this page come from?

On clue is to look for <% and %> symbols in the code, right at the top. If these aren't there, it isn't ASP.

If it is ASP then it needs to normally be named xxxx.asp and not .htm or .html and it really should be part of a &quot;web&quot; (in FrontPage terms) or an &quot;application&quot; (in InterDev terms).

In reality though it can be dumped into any virtual directory that has scripting enabled. A lot of hack ASP is done this way, with no global.asa or other of the normal trappings of an ASP application.
 
Thank you for the information. I placed it in a file with .asp extention because it is an asp page. I'm doing it in Interdev as an application. Now I just need to get it working. Thank you for making it a little clearer about html and asp.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top