我创建了一个带有按钮的页面,可以打开一个新页面,如果你愿意,可以弹出一个弹出窗口。
btnToolbarSearch.Attributes.Add("onclick", "window.open('DagbokSearch.aspx','','height=600,width=600');return false");
在这个打开的新页面上,我有一个gridview,您可以在其中获得以下信息。 (您在“从日期”到“到目前为止”进行搜索并获取其间的记录。)
第一栏中的“Gåtill”是一个链接
<asp:HyperLinkField DataNavigateUrlFields="Foretag"
DataNavigateUrlFormatString="userProfile.aspx?ID={0}"
Text="Gå till" />
我想通过此链接让我回到上一页并打开具有相应ID的对象,我不知道如何完成此操作。也许有一种比我正在使用的更好的方式,但我还在学习。
答案 0 :(得分:1)
您可以在gridview的Rowdatabound事件中设置其NavigateUrl属性。等;
protected void gvDogBok_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
((HyperLink)e.Row.Controls[1].Controls[1]).NavigateUrl = "~/userProfile.aspx?ID="+((YourType)e.Row.DataItem).ID+"";
}
}
答案 1 :(得分:1)
我不确定你的要求是否可以完成。我建议你使用浮动div弹出窗口。这样您就不必离开当前页面并转到新选项卡。这可以解决您的问题,并避免弹出窗口阻止程序的问题。
以下是一些示例:http://www.javascripttoolbox.com/lib/popup/example.php
答案 2 :(得分:1)
使用此
protected void gvDogBok_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
((HyperLink)e.Row.Controls[1].Controls[1]).Attribute.Add("onclick", "window.opener.location =userProfile.aspx?ID="+ ((YourType)e.Row.DataItem).ID+"; window.close();";
}
}
答案 3 :(得分:1)
您可以设置JavaScript:window.location.replace(url);到客户端点击HyperLink。 window.location.replace(url)将重新加载页面。
btnToolbarSearch.Attributes.Add("onclick", "var windowHandle = window.open('DagbokSearch.aspx','','height=600,width=600');return false");
并在超链接cleint side onclick
hyperLink.Attributes.Add("onclick", "windowHandle.close();window.location.replace(url);return false");
答案 4 :(得分:1)
您应该能够使用window.opener
属性来获取对父窗口的引用。然后,您可以将其URL设置为所选链接,然后关闭弹出窗口。
这样的事情可以解决问题:
// Place this near your closing </body> tag
// NB Uses jQuery and event delegation
$(function() {
$('table').on('click', 'tr > td:first > a', function(event) {
if (window.opener) {
event.preventDefault();
window.opener.location.href = this.href;
window.close();
}
});
});