473,602 Members | 2,792 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

FormsAuthentica tion.RedirectFr omLoginPage is not passed fully qualified url

I have two web applications on the same server:

http://localhost/ModemUpgrade

and

http://localhost/TestFormAuth

The web.config of ModemUpgrade:

<authenticati on mode="Forms">
<forms name=".cuid"
loginUrl="http://localhost/TestFormAuth/MemberLogin.asp x" path="/">
</forms>
</authentication>

PROBLEM:
when I call FormsAuthentica tion.RedirectFr omLoginPage from
MemberLogin.asp ,

I notice that ReturnUrl=/ModemUpgrade/Agree.aspx
This keeps me on http://localhost/TestFormAuth/MemberLogin.aspx
because it doesn't have the fully qualified url
(http://localhost/TestFormAuth/Member...://localhost/M
odemUpgrade/Agree.aspx)
needed to complete the redirect

If I manually surf to:
http://localhost/TestFormAuth/Member...ade/Agree.aspx

the whole thing works...Please advise. Thanks.

Nov 16 '05 #1
3 3060
I'am also having this particular problem. It does not log in some of
the users already registered in the database. They get redirected to
the login page even though they provide the proper user name and
password. not sure what is going on. Searched the groups and not able
to get a good solution.

Thanks,

Sunil.B

"Jacob Crossley" <ja***********@ hotmail.com> wrote in message news:<8s******* ********@fe25.u senetserver.com >...
I have two web applications on the same server:

http://localhost/ModemUpgrade

and

http://localhost/TestFormAuth

The web.config of ModemUpgrade:

<authenticati on mode="Forms">
<forms name=".cuid"
loginUrl="http://localhost/TestFormAuth/MemberLogin.asp x" path="/">
</forms>
</authentication>

PROBLEM:
when I call FormsAuthentica tion.RedirectFr omLoginPage from
MemberLogin.asp ,

I notice that ReturnUrl=/ModemUpgrade/Agree.aspx
This keeps me on http://localhost/TestFormAuth/MemberLogin.aspx
because it doesn't have the fully qualified url
(http://localhost/TestFormAuth/Member...://localhost/M
odemUpgrade/Agree.aspx)
needed to complete the redirect

If I manually surf to:
http://localhost/TestFormAuth/Member...ade/Agree.aspx

the whole thing works...Please advise. Thanks.

Nov 16 '05 #2
For some reason no one is answering. : - (
"Sunil" <su******@yahoo .com> wrote in message
news:66******** *************** ***@posting.goo gle.com...
I'am also having this particular problem. It does not log in some of
the users already registered in the database. They get redirected to
the login page even though they provide the proper user name and
password. not sure what is going on. Searched the groups and not able
to get a good solution.

Thanks,

Sunil.B

"Jacob Crossley" <ja***********@ hotmail.com> wrote in message

news:<8s******* ********@fe25.u senetserver.com >...
I have two web applications on the same server:

http://localhost/ModemUpgrade

and

http://localhost/TestFormAuth

The web.config of ModemUpgrade:

<authenticati on mode="Forms">
<forms name=".cuid"
loginUrl="http://localhost/TestFormAuth/MemberLogin.asp x" path="/">
</forms>
</authentication>

PROBLEM:
when I call FormsAuthentica tion.RedirectFr omLoginPage from
MemberLogin.asp ,

I notice that ReturnUrl=/ModemUpgrade/Agree.aspx
This keeps me on http://localhost/TestFormAuth/MemberLogin.aspx
because it doesn't have the fully qualified url
(http://localhost/TestFormAuth/Member...://localhost/M odemUpgrade/Agree.aspx)
needed to complete the redirect

If I manually surf to:
http://localhost/TestFormAuth/Member...ade/Agree.aspx
the whole thing works...Please advise. Thanks.

Nov 16 '05 #3
For some reason no one is answering. : - (
"Sunil" <su******@yahoo .com> wrote in message
news:66******** *************** ***@posting.goo gle.com...
I'am also having this particular problem. It does not log in some of
the users already registered in the database. They get redirected to
the login page even though they provide the proper user name and
password. not sure what is going on. Searched the groups and not able
to get a good solution.

Thanks,

Sunil.B

"Jacob Crossley" <ja***********@ hotmail.com> wrote in message

news:<8s******* ********@fe25.u senetserver.com >...
I have two web applications on the same server:

http://localhost/ModemUpgrade

and

http://localhost/TestFormAuth

The web.config of ModemUpgrade:

<authenticati on mode="Forms">
<forms name=".cuid"
loginUrl="http://localhost/TestFormAuth/MemberLogin.asp x" path="/">
</forms>
</authentication>

PROBLEM:
when I call FormsAuthentica tion.RedirectFr omLoginPage from
MemberLogin.asp ,

I notice that ReturnUrl=/ModemUpgrade/Agree.aspx
This keeps me on http://localhost/TestFormAuth/MemberLogin.aspx
because it doesn't have the fully qualified url
(http://localhost/TestFormAuth/Member...://localhost/M odemUpgrade/Agree.aspx)
needed to complete the redirect

If I manually surf to:
http://localhost/TestFormAuth/Member...ade/Agree.aspx
the whole thing works...Please advise. Thanks.

Nov 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
274
by: Jacob Crossley | last post by:
I have two web applications on the same server: http://localhost/ModemUpgrade and http://localhost/TestFormAuth The web.config of ModemUpgrade:
3
238
by: Jacob Crossley | last post by:
I have two web applications on the same server: http://localhost/ModemUpgrade and http://localhost/TestFormAuth The web.config of ModemUpgrade:
1
3498
by: TaeHo Yoo | last post by:
Thanks in advance, What I did was 1. add these lines in web.cofig file <authentication mode="Forms"> <forms name="frmAuthentication" loginUrl="login.aspx" protection="All" path="/" /> </authentication> <authorization>
2
7017
by: Ben Fidge | last post by:
Is FormsAuthentication.RedirectFromLoginPage the only way to populate the HttpContext.Current.User.Identity.Name property? A base class for each page contains the follwoing property: public int CustomerID { get { try { if (HttpContext.Current.User.Identity.Name != "") return Convert.ToInt32(HttpContext.Current.User.Identity.Name);
2
3493
by: tshad | last post by:
I have a logon page that is may be called by the Forms Authentication setup. This would put a ReturnURL as part of the URL. I would normally then just issue a: FormsAuthentication.RedirectFromLoginPage(logon.txt,true) But I also am giving them an option to register which would go to a new page. From this page, when they submit, I want to go the original page they were heading for (ReturnURL) when the went to the logon page.
2
1809
by: Grant Merwitz | last post by:
Hi, i am using forms authentication in an ASP.NET project I am setting the Forms authentication cookie by using: FormsAuthentication.RedirectFromLoginPage(UserName.Text, false); Now when i review my trace on my page, there are two cookies created that look identical. When i FormsAuthentication.SignOut() they both dissappear. Any ideas as to why two cookies are created?
1
1976
by: Dean R. Henderson | last post by:
I setup FormsAuthentication on a couple websites where it has been working as expected for a long time. I used this code to setup the same type of authentication on a new website I am working on and the Cookie Name is not getting setup the same way. In my Web.config file, I use the following basic settings on both the old and new websites: <authentication mode="Forms"> <forms name="SiteAuth" loginUrl="Logon.aspx" protection="All"
1
3756
by: Jeremy Chapman | last post by:
I have built a web app. While testing I have found that if I browse to a page in the app, then get redirected to the login page and enter my credentials. The FormsAuthentication.RedirectFromLoginPage call is redirecting to the default.aspx page rather than the original page the user was at. Here is the details of my application: Web.config: <authentication mode="Forms">
2
2699
by: rn5a | last post by:
A web.config file has the following code: <configuration> <system.web> <authentication mode="Forms"> <forms name="NETConnectCookie" loginUrl="Login.aspx"> <credentials passwordFormat="SHA1"/> </forms> </authentication> </system.web>
0
7993
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7920
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8404
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
5867
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5440
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3900
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3944
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2418
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.