SearchRollFiles.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:4k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class FileBooks_SearchRollFiles : System.Web.UI.Page
  12. {
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.         LoginLogic.MatchLoad("../", "FileBooks_SearchRollFiles");
  16.         if (!IsPostBack)
  17.         {
  18.             DropLoadSet();
  19.         }
  20.     }
  21.     public void DropLoadSet()
  22.     {
  23.         //部门
  24.         KeyValue_SSBM.DataTextField = "DeptName";
  25.         KeyValue_SSBM.DataValueField = "ID";
  26.         KeyValue_SSBM.DataSource = EnumGet.DepartmentGetEnum();
  27.         KeyValue_SSBM.DataBind();
  28.         ListItem linone = new ListItem();
  29.         linone.Text = "无";
  30.         linone.Value = "0";
  31.         KeyValue_SSBM.Items.Add(linone);
  32.         KeyValue_SSBM.SelectedIndex = KeyValue_SSBM.Items.Count - 1;
  33.         //卷库
  34.         KeyValue_SSJK.DataTextField = "JKMC";
  35.         KeyValue_SSJK.DataValueField = "ID";
  36.         KeyValue_SSJK.DataSource = EnumGet.RollRoomsGetEnum();
  37.         linone.Text = "无";
  38.         linone.Value = "0";
  39.         KeyValue_SSJK.Items.Add(linone);
  40.         KeyValue_SSJK.DataBind();
  41.         KeyValue_SSJK.SelectedIndex = KeyValue_SSJK.Items.Count - 1;
  42.         //密级
  43.         KeyValue_JAMJ.DataTextField = "Text";
  44.         KeyValue_JAMJ.DataValueField = "Value";
  45.         KeyValue_JAMJ.DataSource = EnumGet.MiJiGetEnum();
  46.         KeyValue_JAMJ.DataBind();
  47.    
  48.         linone.Text = "无";
  49.         linone.Value = "0";
  50.         KeyValue_JAMJ.Items.Add(linone);
  51.         KeyValue_JAMJ.SelectedIndex = KeyValue_JAMJ.Items.Count - 1;
  52.         //凭证
  53.         KeyValue_PZLB.DataTextField = "Text";
  54.         KeyValue_PZLB.DataValueField = "Value";
  55.         KeyValue_PZLB.DataSource = EnumGet.PingZhengGetEnum();
  56.         KeyValue_PZLB.DataBind();
  57.         linone.Text = "无";
  58.         linone.Value = "0";
  59.         KeyValue_PZLB.Items.Add(linone);
  60.         KeyValue_PZLB.SelectedIndex = KeyValue_PZLB.Items.Count - 1;
  61.     }
  62.     protected void Button1_Click(object sender, EventArgs e)
  63.     {
  64.         string SqlStr = "";
  65.         SqlStr = Server.UrlEncode(SqlStr);
  66.         SqlStr += " JAH like '" + RP.SDot(KeyValue_JAH.Text) + "%' and";
  67.         if (KeyValue_SSJK.SelectedValue != "0")
  68.         {
  69.             SqlStr += " SSJK = '" + RP.SDot(KeyValue_SSJK.SelectedValue) + "' and";
  70.         }
  71.         if (KeyValue_SSBM.SelectedValue != "0")
  72.         {
  73.             SqlStr += " SSBM = '" + RP.SDot(KeyValue_SSBM.SelectedValue) + "' and";
  74.         }
  75.         SqlStr += " BGQX like '" + RP.SDot(KeyValue_BGQX.Text) + "%' and";
  76.         SqlStr += " QZH like '" + RP.SDot(KeyValue_QZH.Text) + "%' and";
  77.         SqlStr += " DAGH like '" + RP.SDot(KeyValue_DAGH.Text) + "%' and";
  78.         SqlStr += " SWH like '" + RP.SDot(KeyValue_SWH.Text) + "%' and";
  79.         SqlStr += " PZBH1 like '" + RP.SDot(KeyValue_PZBH1.Text) + "%' and";
  80.         SqlStr += " YS like '" + RP.SDot(KeyValue_YS.Text) + "%' and";
  81.         SqlStr += " ANMC like '" + RP.SDot(KeyValue_ANMC.Text) + "%' and";
  82.         SqlStr += " JZND like '" + RP.SDot(KeyValue_JZND.Text) + "%' and";
  83.         SqlStr += " ZZRQ like '" + RP.SDot(KeyValue_ZZRQ.Text) + "%' and";
  84.         SqlStr += " BZJG like '" + RP.SDot(KeyValue_BZJG.Text) + "%' and";
  85.         if (KeyValue_JAMJ.SelectedValue != "0")
  86.         {
  87.             SqlStr += " JAMJ ='" + RP.SDot(KeyValue_JAMJ.SelectedValue) + "' and";
  88.         }
  89.         SqlStr += " MLH like '" + RP.SDot(KeyValue_MLH.Text) + "%' and";
  90.         SqlStr += " BXXH like '" + RP.SDot(KeyValue_BXXH.Text) + "%' and";
  91.         if (KeyValue_PZLB.SelectedValue != "0")
  92.         {
  93.             SqlStr += " PZLB ='" + RP.SDot(KeyValue_PZLB.SelectedValue) + "' and";
  94.         }
  95.         SqlStr += " PZBH2 like '" + RP.SDot(KeyValue_PZBH2.Text) + "%' and";
  96.         SqlStr += " BZ like '" + RP.SDot(KeyValue_BZ.Text) + "%' ";
  97.         if ((KeyValue_QSRQ.Text != "") && (KeyValue_QSRQ2.Text != ""))
  98.         {
  99.             SqlStr += " and QSRQ >='" + KeyValue_QSRQ.Text + "' and QSRQ<='" + KeyValue_QSRQ2.Text + "'";
  100.         }
  101.         if ((KeyValue_ZZRQ.Text != "") && (KeyValue_ZZRQ2.Text != ""))
  102.         {
  103.             SqlStr += " and ZZRQ >='" + KeyValue_ZZRQ.Text + "' and ZZRQ<='" + KeyValue_ZZRQ2.Text + "'";
  104.         }
  105.         Response.Redirect("RollFilesManager.aspx?TiaoJian=" + SqlStr);
  106.     }
  107. }