标签弹出窗口后获取点击的值

直接上代码:

弹出窗口用的js artdialog

function fq(id) {
          
            art.dialog.open('waitInfo.aspx?codeNumber='+id, { title: 'test', lock: true, fixed: true, drag: false, width: 750, height: 400, background: '#878787', id: 'edit' });
        };

<%#Eval("codeNumber") %>

aspx后台获取:

Label3.Text = Request.QueryString["codeNumber"].ToString();

你可能感兴趣的:(js,asp.net)