How to force ASP.NET forms authentication to use a

2019-05-11 23:24发布

When you use ASP.NET forms authentication, and you want to surf to a secure page like securepage.aspx, you would be redirected to this URL:

http://www.example.com/login.aspx?returnurl=securepage.aspx`

Is there a way to get the absolute URL in login page, like:

http://www.example.com/login.aspx?returnurl=http://www.example.com/securepage.aspx

I need this feature, because I'm working on a rather complicated SSO project, and I need to always work with absolute URLs.

2条回答
来,给爷笑一个
3楼-- · 2019-05-12 00:16

try this

<httpRuntime useFullyQualifiedRedirectUrl=”true”
查看更多
登录 后发表回答