ASP页面跳转问题 新开页面(急!!!!)
publicvoidCategories_OnClientClick2(objectsender,EventArgse){if(this.Lentivirus.ID=="...
public void Categories_OnClientClick2(object sender, EventArgs e)
{
if (this.Lentivirus.ID == "Lentivirus")
{
string id = Request.QueryString["id"];
type = "2,";
Response.Redirect("/Prolistdefault.aspx?type=" + type + "&id=" + id);
}
}
这是后台代码 前台一个按钮,点击事件触发,跳转,
我想要新开页面不是在本页面 展开
{
if (this.Lentivirus.ID == "Lentivirus")
{
string id = Request.QueryString["id"];
type = "2,";
Response.Redirect("/Prolistdefault.aspx?type=" + type + "&id=" + id);
}
}
这是后台代码 前台一个按钮,点击事件触发,跳转,
我想要新开页面不是在本页面 展开
展开全部
单纯用Response.Redirect只能在本页打开。网上有资料说改前台页面form的target属性。如果你在代码中实现可用JavaScript的window.open方法。Response.Write("<script>window.open('Prolistdefault.aspx?type=" + type + "&id=" + id');</script>");类似这样的。具体语句你自己调整
追问
public void Categories_OnClientClick1(object sender, EventArgs e)
{
Response.Write("window.open('Prolistdefault.aspx?type=' + type + '&id=' + id');");
}
}还是不行
追答
无法打开只能是JavaScript语句你检查一下格式。
展开全部
只能是写出js代码
Response.Write("<script>window.open('dsdf.aspx')</script>");
Response.Write("<script>window.open('dsdf.aspx')</script>");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
target 相关属性
追问
后台!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询