Ask a Question related to Dreamweaver AppDev, Design and Development.
-
jefreywith1f #1
Does web.config only govern .aspx files?
I have a directory that I want to restrict to members only. Members names &
passwords are held in an SQL table. I've named the members_only directory as an
application in IIS manager. I've built login & logout pages and everything
seems work OK, but the URLs of PDFs and plain HTML files within the directory
are accessible without logging in. Does the web.config file only govern the
..NET bits of the site and ignore other files like PDF & HTML? The
web.config file for the members directory is as follows <configuration>
<system.web> <authorization> <allow users='member' />
<deny users='*' /> </authorization> </system.web>
</configuration> System.web from the web.config at the root of the site
<system.web> <customErrors mode='Off' /> <authentication mode =
'Forms'> <forms name = 'SECAUTH '
loginUrl='/members/members_only/member_login.aspx'> <credentials />
</forms> </authentication> <authorization>
<allow users='*' /> </authorization> </system.web>
jefreywith1f Guest
-
put aspx files online
Can you post the detailed err. msg? -- G. "Marichael Davy" wrote: -
How to Deploy aspx files
Hi everybody, I'm a new be for ASP .NET. I made a simple project (C# coded web project) and I want to deploy it to my web site. My project... -
Templates + aspx files
i've created a dreamweaver template wich use microsoft user controls i applyed it to all my pages and everything goes fantastic. it looks like: <%@... -
.aspx files don't work
I have been having some trouble with my web server running under Windows 2000 Server, so I removed IIS and reinstalled it. Now, I noticed that my... -
Variable JIT of ASPX files?
As I understand it, when the first page of an application is accessed, all ASPX/ASCX/etc. files in the same folder are compiled using the JIT... -
Paul Whitham TMM #2
Re: Does web.config only govern .aspx files?
I am afraid so as it is relevant only to the ASP.Net process, and this is
only envoked with a .aspx page.
--
Regards
Paul Whitham
Macromedia Certified Professional for Dreamweaver MX2004
Valleybiz Internet Design
[url]www.valleybiz.net[/url]
Team Macromedia Volunteer for Ultradev/Dreamweaver MX
[url]www.macromedia.com/support/forums/team_macromedia[/url]
"jefreywith1f" <webforumsuser@macromedia.com> wrote in message
news:cvkvqd$gk$1@forums.macromedia.com...&> I have a directory that I want to restrict to members only. Members namesas an> passwords are held in an SQL table. I've named the members_only directoryeverything> application in IIS manager. I've built login & logout pages anddirectory> seems work OK, but the URLs of PDFs and plain HTML files within thethe> are accessible without logging in. Does the web.config file only govern<configuration>> .NET bits of the site and ignore other files like PDF & HTML? The
> web.config file for the members directory is as followsmode => <system.web> <authorization> <allow users='member' />
> <deny users='*' /> </authorization> </system.web>
> </configuration> System.web from the web.config at the root of the site
> <system.web> <customErrors mode='Off' /> <authentication<credentials />> 'Forms'> <forms name = 'SECAUTH '
> loginUrl='/members/members_only/member_login.aspx'>> </forms> </authentication> <authorization>
> <allow users='*' /> </authorization> </system.web>
>
Paul Whitham TMM Guest
-
jefreywith1f #3
Re: Does web.config only govern .aspx files?
Thanks for the answer. I'll have to look into another method of authorization.
Geoff
jefreywith1f Guest



Reply With Quote

