protected void Page_Load(object sender, EventArgs e) { //在列表里点击删除按钮,通过AJAX执行这里的后台代码,删除一条记录 if (Request["DelSUB_ID"] != null) { int re = BLLTable <KM_SUB_STRU> .Factory(conn).Delete(KM_SUB_STRU.Attribute.SUB_ID, Request["DelSUB_ID"]); if (re > 0) { Response.Write("1");//可以输出数字 大于0 表示操作成功,也可以直接输出 字符串,客户端将弹出此字符串信息作为提示 } else { Response.Write("删除失败!"); } } //在列表顶部点击删除按钮,通过AJAX执行这里的后台代码,删除多条记录 if (Request["DelKeyIDS"] != null) { KM_SUB_STRU cond = new KM_SUB_STRU(); cond.In(KM_SUB_STRU.Attribute.SUB_ID, Request["DelKeyIDS"]); int re = BLLTable <KM_SUB_STRU> .Factory(conn).Delete(cond); if (re > 0) { Response.Write("1");//可以输出数字 大于0 表示操作成功,也可以直接输出 字符串,客户端将弹出此字符串信息作为提示 } else { Response.Write("删除失败!"); } } //在用户详细信息查看编辑页面,点保存时,通过AJAX执行这里的后台代码,实现部门字段的更新 if (Request["saveInfo"] != null) { KM_SUB_STRU val = new KM_SUB_STRU(); val.SUB_ID = Request["FieldKeyID"]; List <AttributeItem> lstCol = val.af_AttributeItemList; for (int i = 0; i < lstCol.Count; i++) { if (!string.IsNullOrEmpty(Request["txt" + lstCol[i].FieldName])) { val.SetValue(lstCol[i].FieldName, Request["txt" + lstCol[i].FieldName]); } } BLLTable <KM_SUB_STRU> .Factory(conn).Update(val, KM_SUB_STRU.Attribute.SUB_ID); Response.Write("修改用户信息成功"); } Response.End(); }
protected void Page_Load(object sender, EventArgs e) { //���б�����ɾ����ť��ͨ��AJAXִ������ĺ�̨���룬ɾ��һ����¼ if (Request["DelSUB_ID"] != null) { int re = BLLTable<KM_SUB_STRU>.Factory(conn).Delete(KM_SUB_STRU.Attribute.SUB_ID, Request["DelSUB_ID"]); if (re > 0) { Response.Write("1");//����������� ����0 ��ʾ�����ɹ���Ҳ����ֱ����� �ַ������ͻ��˽��������ַ�����Ϣ��Ϊ��ʾ } else { Response.Write("ɾ��ʧ�ܣ�"); } } //���б�������ɾ����ť��ͨ��AJAXִ������ĺ�̨���룬ɾ��������¼ if (Request["DelKeyIDS"] != null) { KM_SUB_STRU cond = new KM_SUB_STRU(); cond.In(KM_SUB_STRU.Attribute.SUB_ID, Request["DelKeyIDS"]); int re = BLLTable<KM_SUB_STRU>.Factory(conn).Delete(cond); if (re > 0) { Response.Write("1");//����������� ����0 ��ʾ�����ɹ���Ҳ����ֱ����� �ַ������ͻ��˽��������ַ�����Ϣ��Ϊ��ʾ } else { Response.Write("ɾ��ʧ�ܣ�"); } } //���û���ϸ��Ϣ�鿴�༭ҳ�棬�㱣��ʱ��ͨ��AJAXִ������ĺ�̨���룬ʵ�ֲ����ֶεĸ��� if (Request["saveInfo"] != null) { KM_SUB_STRU val = new KM_SUB_STRU(); val.SUB_ID = Request["FieldKeyID"]; List<AttributeItem> lstCol = val.af_AttributeItemList; for (int i = 0; i < lstCol.Count; i++) { if (!string.IsNullOrEmpty(Request["txt" + lstCol[i].FieldName])) { val.SetValue(lstCol[i].FieldName,Request["txt" + lstCol[i].FieldName]); } } BLLTable<KM_SUB_STRU>.Factory(conn).Update(val, KM_SUB_STRU.Attribute.SUB_ID); Response.Write("���û���Ϣ�ɹ�"); } Response.End(); }
protected void Page_Load(object sender, EventArgs e) { if (Request["show"] != null) { hideEditLinkClsName = "hide"; } if (!IsPostBack) { //if (!string.IsNullOrEmpty(Request["oneid"])) //{ // oneid = Request["oneid"]; // hidOneID.Value = oneid; // List<SYS_USERROLE> lst = BLLTable<SYS_USERROLE>.Factory(conn).Select(SYS_USERROLE.Attribute.USER_ID, oneid); // if (lst.Count > 0) // { // for (int i = 0; i < lst.Count; i++) // { // mulids += mulids == "" ? lst[i].SUB_ID.ToString() : "," + lst[i].SUB_ID; // } // } //} if (!string.IsNullOrEmpty(Request["mulids"])) { if (mulids != "") { mulids += ","; } mulids += Request["mulids"]; } hidMulIDS.Value = mulids; if (mulids != "") { condObj.In(KM_SUB_STRU.Attribute.SUB_ID, mulids); BindList(condObj); } } }