Ask a Question related to ASP.NET Security, Design and Development.
-
Sharif #1
Access denied for IUSER
Hi all, I look after an intranet site. Our server is Windows 2000 running IIS
5. Access to pages on our intranet has always been done using the Anonymous
Account. When I user the Iuser it give me Access denied error
In my web.config I set up the access like
<system.web>
<authorization>
<allow roles="domain\Administrator"
users=” domain \Iuser" />
<deny users="*" />
</authorization>
</system.web>
and it is not working
thanks
--
sharif
Sharif Guest
-
One With Access Denied, Another With Access, But NotFull
I'm suddenly having access denied/permission problems through Contribute on every page after the templates and their related pages were updated with... -
Web Service + Anon Access, but getting 401 Access Denied Error
I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous... -
Access denied when creating Access application object
In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the... -
access denied on data access pages
I have created data access pages that worked well when I tried them on two separate computer simutaneously, but when we went into production we got... -
'Access is Denied'
I am using Windows XP Pro, and I set up my profile as the administrator and protected 'login' w/ password. A few weeks ago, the registry file got... -
Raterus #2
Re: Access denied for IUSER
the iuser account shouldn't be a domain account, but a computer level account. But you are specifying it like a domain account in web.config.
I don't honestly see why you need to configure web.config like this though, if it is anonymous, it will always hit your application with the same exact credentails. Usually you configure these types of authorizations when you have windows or forms authentication where different accounts with different levels of security can interact with your site differently.
--Michael
"Sharif" <sharif42@hotmail.com> wrote in message news:49CC60F4-A3EA-465E-A1DD-0FBB7F9FF563@microsoft.com...> Hi all, I look after an intranet site. Our server is Windows 2000 running IIS
> 5. Access to pages on our intranet has always been done using the Anonymous
> Account. When I user the Iuser it give me Access denied error
> In my web.config I set up the access like
>
> <system.web>
> <authorization>
> <allow roles="domain\Administrator"
> users=” domain \Iuser" />
> <deny users="*" />
> </authorization>
>
>
> </system.web>
>
> and it is not working
>
> thanks
>
> --
> sharifRaterus Guest



Reply With Quote

