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

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 Dutys_SearchDuty : System.Web.UI.Page
  12. {
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.         LoginLogic.MatchLoad("../", "Dutys_SearchDuty");
  16.         if (!IsPostBack)
  17.         {
  18.             DropLoadSet();
  19.         }
  20.     }
  21.     public void DropLoadSet()
  22.     {
  23.         //值班类别
  24.         KeyValue_ZBLB.DataTextField = "LBMC";
  25.         KeyValue_ZBLB.DataValueField = "ID";
  26.         KeyValue_ZBLB.DataSource = EnumGet.ZhiBanTypeGetEnum();
  27.         KeyValue_ZBLB.DataBind();
  28.         ListItem linone = new ListItem();
  29.         linone.Text = "--请选择--";
  30.         linone.Value = "0";
  31.         KeyValue_ZBLB.Items.Add(linone);
  32.         KeyValue_ZBLB.SelectedIndex = KeyValue_ZBLB.Items.Count - 1;
  33.     }
  34.     protected void Button1_Click(object sender, EventArgs e)
  35.     {
  36.         string SqlStr = "";
  37.         SqlStr += " ZBLB = '" + KeyValue_ZBLB.SelectedValue + "'";
  38.         if (!String.IsNullOrEmpty(KeyValue_ZBRY.Text.Trim()))
  39.         {
  40.             SqlStr += " and ZBRY like '" + RP.SDot(KeyValue_ZBRY.Text) + "%'";
  41.         }
  42.         if (!String.IsNullOrEmpty(KeyValue_ZBKSSJ.Text.Trim()))
  43.         {
  44.             SqlStr += " and convert(varchar(10),ZBKSSJ,120) >= convert(varchar(10)," + KeyValue_ZBKSSJ.Text + ",120)";
  45.         }
  46.         if (!String.IsNullOrEmpty(KeyValue_ZBJSSJ.Text.Trim()))
  47.         {
  48.             SqlStr += " and convert(varchar(10),ZBJSSJ,120) <= convert(varchar(10)," + KeyValue_ZBJSSJ.Text + ",120)";
  49.         }
  50.         SqlStr = Server.UrlEncode(SqlStr);
  51.         Response.Redirect("DutysManager.aspx?TiaoJian=" + SqlStr);
  52.     }
  53. }