直接上代码:
弹出窗口用的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' });
};
<td class="second"><a href="#" id="edit" onclick='fq(<%#Eval("codeNumber") %>)'><%#Eval("codeNumber") %></a></td>
aspx后台获取:
Label3.Text = Request.QueryString["codeNumber"].ToString();