本文介绍了如何在网格视图中的链接按钮单击事件上重定向到不同的页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在网格视图中有一个链接按钮,点击链接按钮我已经分配了一个网址并且它在同一个标签中重定向,我们可以重定向到不同的标签或不同的窗口吗?
我的尝试:
I have a link button in grid view and on click of the link button i have assigned a url and it is redirecting in the same tab, Can we redirect to a different tab or different window ?
What I have tried:
<asp:LinkButton ID="LinkButton1" runat="server" OnCommand="LinkButton_Click" Text="Link" CommandArgument='<%# Eval("T_Link") %>'></asp:LinkButton>
protected void LinkButton_Click(Object sender, CommandEventArgs e)
{
strURL = "";
LinkButton lb = (LinkButton)sender;
GridViewRow row1 = (GridViewRow)lb.NamingContainer;
strURL = e.CommandArgument.ToString();
Response.Redirect(strURL);
}
推荐答案
protected void LinkButton_Click(Object sender, CommandEventArgs e)
{
strURL = "";
LinkButton lb = (LinkButton)sender;
GridViewRow row1 = (GridViewRow)lb.NamingContainer;
strURL = e.CommandArgument.ToString();
Response.Write("<script>");
Response.Write("window.open('"+strURL+"','_blank')");
Response.Write("</script>");
}
备用有效的解决方案
用锚点
标签替换 linkbutton
Alternate and effective solution
replace the linkbutton
with an anchor
tag
<a href='<%# Eval("T_Link") %>' target="_blank">Link</a>
这篇关于如何在网格视图中的链接按钮单击事件上重定向到不同的页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!