<%--
后台取值
protected void btnYes_Click(object sender, EventArgs e)
{
for (int i = 0; i < GridViewOne.Rows.Count; i++)
{
CheckBox ckbox = new CheckBox();
ckbox = (CheckBox)GridViewOne.Rows[i].FindControl("CheckBoxesTwo");
if (ckbox != null && ckbox.Checked == true)
{
strID = strID + "'" + Convert.ToString(GridViewOne.Rows[i].Cells[2].Text.Trim()) + "',";
}
}
//用户编码
//string strUsre = Convert.ToString(SysUserInfo.Code);
string strUsre = "GM11032";
if (strID != string.Empty)
{
Webzcpro001.SetZBPI_Info(strID, strUsre);
}
}