如何使用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());
}
答案 0 :(得分:0)
使用喜欢
Response.Redirect("http://www.facebook.com");