string empCode = ds.Tables[0].Rows[i]["EMP_CODE"].ToString();
string empName = ds.Tables[0].Rows[i]["EMP_NAME"].ToString();
string gradeCode = ds.Tables[0].Rows[i]["GRADE_CODE"].ToString();
tr = new TableRow();
td = new TableCell();
td.Attributes.Add("onClick", "javascript: " +
"if(confirm(empName)==true){self.close();}" + //this Line
"else{return;}");
我想在评论部分重用 empName 。有没有办法重用它?
MMMHUHU
相关分类