Ask a Question related to ASP.NET Security, Design and Development.
-
jacob #1
Forms Authentication between web applications on the same server
I have two web applications on the same server:
[url]http://localhost/ModemUpgrade[/url]
and
[url]http://localhost/TestFormAuth[/url]
The web.config of ModemUpgrade:
<authentication mode="Forms">
<forms name=".cuid"
loginUrl="http://localhost/TestFormAuth/MemberLogin.aspx" path="/">
</forms>
</authentication>
PROBLEM:
when I call FormsAuthentication.RedirectFromLoginPage from
MemberLogin.asp,
I notice that ReturnUrl=/ModemUpgrade/Agree.aspx
This keeps me on [url]http://localhost/TestFormAuth/MemberLogin.aspx[/url]
because it doesn't have the fully qualified url
([url]http://localhost/TestFormAuth/MemberLogin.aspx?ReturnUrl=http://localhost/ModemUpgrade/Agree.aspx[/url])
needed to complete the redirect
If I manually surf to:
[url]http://localhost/TestFormAuth/MemberLogin.aspx?ReturnUrl=http://localhost/ModemUpgrade/Agree.aspx[/url]
the whole thing works...Please advise. Thanks.
jacob Guest
-
Forms Authentication across applications
I've read the material on Forms Authentication and I've set this up for several websites without any problems. Basically there's 2 applications for... -
Forms Authentication with Server Farm
I have an ASP application that is 100% stateless and runs on a 5 servers using a local director to load balance. All session info is pulled from a... -
ASP.NET Forms Authentication Via A SQL Server Database With Windows User types?
We have built an ASP.NET application that will run on the Intranet using SQL 2000 as our data layer. We have decided to use Form Authentication... -
Forms authentication then redirection to a secure web with NT authentication?
Hi, I want to allow access to particular secured intranet web sites. These intranet are stored in sharepoint (2003 version) Actually I've... -
Impersonation failure with Index Server and Forms Authentication with Active Directory
I'm posting my problem experience and solution I found here for other ASP.NET developers. I have a web application that uses Forms Authentication...



Reply With Quote

