Ask a Question related to ASP.NET Security, Design and Development.
-
May BA via .NET 247 #1
ASP.NET Forms Authentication don't work on some Window XP
(Type your message here)
I am working on ASP.NET project where I am using formauthentication, it seems to work fine on all OS including XPexcept on some XP machines in the department, I have been toldthat these machines are ghosted, which mean that they crashed inthe past, so they installed XP on them. The authentication isdeveloped using custom ticket authentication.
Dim strRoles As String = AssignRoles(USRole)
FormsAuthentication.Initialize()
Dim ticket As FormsAuthenticationTicket = NewFormsAuthenticationTicket( _
1, _
USID.ToString, _
DateTime.Now, _
DateTime.Now.AddMinutes(30), _
True, _
strRoles)
Dim hash As String =FormsAuthentication.Encrypt(ticket)
Dim cookie1 As HttpCookie = NewHttpCookie(FormsAuthentication.FormsCookieName, hash)
cookie1.Expires = ticket.Expiration
Response.Cookies.Add(cookie1)
One time I changed the authentication persistent attribute fromtrue to false, it seemed to work for a while but now it is notworking any more. I noticed that after the user login, theauthentication cookie was created, however; it is lost afterredirecting the user to another page. Also, it seems to workfine if I use
FormsAuthentication.SetAuthCookie(Username, True)
However; I need to use Custom Authentication cookie. Any Ideas?
--------------------------------
From: May BA
-----------------------
Posted by a user from .NET 247 ([url]http://www.dotnet247.com/[/url])
<Id>3qm14zo67UO8QE8qvsGXwQ==</Id>
May BA via .NET 247 Guest
-
Forms authentication doesn't work for downloads
Hello, I'm using Forms authentication, and it works well. If user is not authenticated, he is routed to the login page. However, this doesn't... -
forms authentication doesn't work for static pages/files like GIF/HTML/PDF ?
do I understand it correctly that forms authentication doesn't work for static pages/files like GIF/HTML/PDF ? so I cannot convince IIS to... -
Forms Authentication does not work when using computer name
Greetings, My asp.net app is using Forms Authentication. Running the project from the Visual Studio .NET 2003 has absolutely no problem. I use... -
Forms Authentication timeout doesn't work
I am trying to do some testing of my application with respect to timeouts (i.e. Session timeouts). I took the advice of somebody else in this... -
Unable to get Forms-based Authentication to work
Hello, I'm new to ASP.NET, and I'm trying to learn how to implement forms based authentication. However, I don't know what I'm doing wrong.... -
Irishmaninusa #2
Re: ASP.NET Forms Authentication don't work on some Window XP
did you ever get this sorted out. Reason for asking is because I have seen
this in a site I am currently working on. On the server I can't get past the
login screeen. Yet while working on the site in VS.NET it allows me to
continue on. And at one point if I tried to access the site from the server
itself it would log me in, but that is no longer the case now. So I saw your
problem down below and was wondering if you had solved it or not.
"May BA via .NET 247" <anonymous@dotnet247.com> wrote in message
news:eipelaekEHA.1904@TK2MSFTNGP09.phx.gbl...
(Type your message here)
I am working on ASP.NET project where I am using form authentication, it
seems to work fine on all OS including XP except on some XP machines in the
department, I have been told that these machines are ghosted, which mean
that they crashed in the past, so they installed XP on them. The
authentication is developed using custom ticket authentication.
Dim strRoles As String = AssignRoles(USRole)
FormsAuthentication.Initialize()
Dim ticket As FormsAuthenticationTicket = New
FormsAuthenticationTicket( _
1, _
USID.ToString, _
DateTime.Now, _
DateTime.Now.AddMinutes(30), _
True, _
strRoles)
Dim hash As String = FormsAuthentication.Encrypt(ticket)
Dim cookie1 As HttpCookie = New
HttpCookie(FormsAuthentication.FormsCookieName, hash)
cookie1.Expires = ticket.Expiration
Response.Cookies.Add(cookie1)
One time I changed the authentication persistent attribute from true to
false, it seemed to work for a while but now it is not working any more. I
noticed that after the user login, the authentication cookie was created,
however; it is lost after redirecting the user to another page. Also, it
seems to work fine if I use
FormsAuthentication.SetAuthCookie(Username, True)
However; I need to use Custom Authentication cookie. Any Ideas?
--------------------------------
From: May BA
-----------------------
Posted by a user from .NET 247 ([url]http://www.dotnet247.com/[/url])
<Id>3qm14zo67UO8QE8qvsGXwQ==</Id>
Irishmaninusa Guest



Reply With Quote

