ASP faq page

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?
 
T

Tom Gahagan

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
 
T

Thomas A. Rowe

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.
==============================================
 
T

Thomas A. Rowe

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.
==============================================
 
A

Andrew Murray

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.
 
Top