Can an asp.net webpage protect log asp pages?

trend

Centurion
Joined
Oct 12, 2004
Messages
171
I am trying to upgrade this website. Currently, there are 20 or 30 asp pages. We need to secure the website so the user will have to login before accessign these pages. Right now, this is done with sessions between the asp pages

Right now, our login page is login.aspx... And when we try to mix aspx and asp, the sessions do not work.

We have to keep the functionality of the user being able to update the webpages via frontpage (so they can have dynamic links).

The login page can be aspx though


any ideas?
 
oh yeah.. something like

Code:
<authentication mode="Forms">
  <forms name="yourAuthCookie" loginUrl="login.aspx"
    protection="All" path="/" />
</authentication>
<authorization>
  <deny users="?" />
</authorization>

Will only protect webpages that are parsed by IIS using:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll

A normaly asp webpage is parsed by:
C:\WINDOWS\system32\inetsrv\asp.dll
and asp pages cannot be parsed by the .net framework.. you get a 'unsupported filetype' error or somethign like that
 
Back
Top