使用C#中的HTTP基本身份验证将用户重定向到页面

时间:2013-06-26 05:04:31

标签: c# authentication redirect

在C#.net中,我想将用户重定向到网页需要HTTP基本身份验证的网页。

如何在C#或任何示例中进行操作?

1)我不想在url中使用pass userid和password作为查询字符串

2)我知道我可以传递Authorization: Basic QWxhZGRpbjpv2FtZQ==之类的请求标题,但如何在传递请求标题后重定向到页面?

非常感谢!!

1 个答案:

答案 0 :(得分:0)

您可以使用:

Response.Redirect("name of your page");

OR:

Server.Transfer("name of your page");