在基于.net表单的方法中重定向到外部链接

时间:2018-01-21 17:45:17

标签: c# html .net web

如何使用URL作为命令参数重定向到某个外部网站?

我试图重定向到facebook.com,但它在地址栏中显示http://localhost:58709/www.facebook.com%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20

protected void DataList1_ItemCommand(object source, DataListCommandEventArgs e)
{    
    Response.Redirect(e.CommandArgument.ToString());
}

1 个答案:

答案 0 :(得分:0)

使用喜欢

Response.Redirect("http://www.facebook.com");