Where the user access your website from? The Windows Integrated security
only good for users of LAN, for them, you do not need a loggin page, because
they have been authenticated when they logged into their computer. Simply
configure the web.config to "<authentication mode="Windows" /> " and
"<identity impersonate="true" />".
If you are talking user accessing your website from the Internet, you cannot
use Win NT security. In this case, you design a logging form and use
"<authentication mode="Form" />". With form authentication, you design your
own way of authentication. Once the user passes the authentication, you
apply appropriate authorization to user to access your website. By default,
whether the user is authenticated or anonimours, he will use
ServerName\ASPNET user account to access your website. (very limited access
permission by default setting). If you want the users have different
authorization, you need to look at "impersonate".
"Flip" <[remove_me](E-Mail Removed)> wrote in message
news:u0oITNm$(E-Mail Removed)...
> I have asked this on one of the IIS newsgroups and it was suggested I come
> here for some advice.
>
> I want to be able to put my pictures on my own server/website behind NTFS
> security (using Win2k3Server users, groups, permissions and all that good
> stuff), as well as have my own login.aspx. Is this possible? I've been
> reading around and I can find all kinds of information which unfortunately
> doesn't help me much. :< Has anyone tried this before, I would love to
know
> how to do this.
>
> Thanks.
>
>
|