62,173
社区成员
发帖
与我相关
我的任务
分享
function rekey(num,name)
{
document.getElementById("txtNum").value=num;
document.getElementById("txtName").value=name ;}
e.Row.Attributes.Add("onclick", "rekey('" + e.Row.Cells[0].Text + "','" + e.Row.Cells[1].Text + "');
string a = e.Row.Cells[0].Text;
string b = e.Row.Cells[1].Text;
if(a=="")
{
a="[ ]";
}
if(b=="")
{
b="[ ]";
}
e.Row.Attributes.Add("onclick", "rekey('" + a + "','" + b + "');