我正在尝试将客户编号字段值传递给href
url
" http://abc.yyy/id=12&custnum="
在我的代码页面后面,我有我的字段值
string custnum=txtcustnum.Text;
现在如何在custnum
href
传递给masterpage.aspx
个链接
答案 0 :(得分:1)
在您的母版页中创建如下的超链接
$("#dialog").dialog({
title: "xyz",
modal: true,
close: function(){
$("#dialog").hide()
//This is where the code reaches when you press the x button or click on the custom cancel or close button.
}
});
$("#dialog").open();
然后在您的内容页面代码中访问此母版页超链接并设置其网址
<asp:HyperLink id="myLink" Text="Click Here" runat="server"/>