I appreciate for reply.
Could you please provide some useful resources for better understanding?
Thanks!
> unless you use ssl, its clear text (just a form field).
>
[quoted text clipped - 7 lines]
> >
> > Thanks!
between browser to webserver, if the UserName&Password is clear text, what
is the purpose of web.config?
<configuration>
<system.web>
<authentication mode="Forms">
<forms name=".COOKIEDEMO"
loginUrl="login.aspx"
protection="All"
timeout="30"
path="/">
<credentials passwordFormat="SHA1" />
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</configuration>
> I appreciate for reply.
>
[quoted text clipped - 13 lines]
> > >
> > > Thanks!
bruce barker - 04 Feb 2008 16:51 GMT
forms authenication uses a cookie or url munging to store the user name in
the browser (else you'd have to answer every page). this is encrypted. only
on the login page is the username/password in clear text.
-- bruce (sqlwork.com)
> between browser to webserver, if the UserName&Password is clear text, what
> is the purpose of web.config?
[quoted text clipped - 33 lines]
> > > >
> > > > Thanks!