ASP faq page

  • Thread starter Thread starter Rosco
  • Start date Start date
R

Rosco

I'm just getting a grasp on ASP. Why do some pages use ASP for pages
that seem to have no active content? As an example see:

http://www.insightful.com/support/faq.asp

I can't see any reason why this could not be faq.htm. Is there an
advantage in using ASP files even if there is no ASP code on the page?
 
From a quick look at the link I would imagine that the listing of the top
faq's is derived from a database... perhaps the reason for the asp. Just a
thought anyway!

Best to you.......
Tom Gahagan
 
Yes, as it maintains the active session state.

You can not tell if the page has active content or not, as you can not see any ASP/VBScript in a
browser.

On the link you provided, the This Month's Top FAQ's link are being pulled from a database otherwise
someone would have manually keep track of the top FAQs each month and then update the page.

Also this link tell you that it is database driven:
http://www.insightful.com/support/faqdetail.asp?FAQID=164&IsArchive=0

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
ASPX = ASP.net, the next step up from ASP.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
..aspx is the file extension for asp.net pages - the new version of ASP.
 
ASP code doesn't necessarily "do something you can see" - it might be doing
something behind the scenes, like writing a cookie to your computer or
something less obvious such as writing a record of your visit to a site
visitor stats log etc.

In any case, as pointed out already, all you will see is HTML page rendered
by the ASP script output.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

asp not supported? 9
.asp?(word)= web pages 4
asp form progression 7
ASP, ASP.NET 6
Form on ASP page no longer works 3
Using FP Enquiry form on asp page 4
Rendering problem .asp page 1
asp vs htm 7

Back
Top