Ask a Question related to ASP.NET General, Design and Development.
-
Cowboy \(Gregory A. Beamer\) #1
Re: What makes FormsAuthentication effect?
In .NET, you normally set up forms auth in the config file and then make
sure the logon page sets the auth cookie. From then on, you do not have to
check. If a user times out, they will automatically be taken back to logon,
as specified in the config file.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"Russel Harvey" <RusselHarvey@hotmail.com> wrote in message
news:0bb101c3471c$b18e3850$a001280a@phx.gbl...> In my login page:
> Upon seccessfully authenticated, I called
>
> FormsAuthentication.SetAuthCookie(LSUserID.Text,
> RememberCheckbox.Checked)
>
> to record the user signin, where later in other pages, I
> can tell whethere this user is signed on by:
>
> if Request.IsAuthenticated = True
> blah blah
>
> However, this works on one Win2K server, once moved to
> production which is also Win2K + .Net 1.0, the second
> check would always failed, meaning FormsAuthentication
> does have any effect.
>
> I wonder what would make FormsAuthentication works in
> a .Net environments?
Cowboy \(Gregory A. Beamer\) Guest
-
FormsAuthentication
Hi, i am using forms authentication in an ASP.NET project I am setting the Forms authentication cookie by using:... -
BUG With FormsAuthentication
The authentication cookie with custom user is not available or the user data is gone after a redirect. In other words all the examples on the net on... -
FormsAuthentication with Machine Name
I had licked this problem once and it resurfaced and won't go away. When I browse to a site with my machine name FormsAuthetication appears to... -
FormsAuthentication.signout does not ??
I am using forms authentication to secure my pages. For my logout, I created a logout page with FormsAuthentication.signout is called at the... -
WindowsApplication and FormsAuthentication?
I have a WebService that is using FormsAuthentication (setup in the web.config file) as follows: <authentication mode="Forms"> <forms...



Reply With Quote

