将字段变量传递给aspx页面中母版页中的超链接

时间:2016-10-14 10:51:38

标签: c# asp.net href

我正在尝试将客户编号字段值传递给href url " http://abc.yyy/id=12&custnum=" 在我的代码页面后面,我有我的字段值

string custnum=txtcustnum.Text;

现在如何在custnum

中将此href传递给masterpage.aspx个链接

1 个答案:

答案 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"/>