public void gvList_DataBinding(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
HiddenField hfView = (HiddenField)e.Row.FindControl("dataView");
HtmlInputCheckBox cbView = (HtmlInputCheckBox)e.Row.FindControl("cbView");
if (hfView.Value == "1")
{
cbView.Checked = true;
hfViewUsers.Value = string.IsNullOrEmpty(hfViewUsers.Value)? cbView.Value: hfViewUsers.Value + "," + cbView.Value;
}
}