SearchArticlesInfo.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 Articles_SearchArticlesInfo : System.Web.UI.Page
  12. {
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.         LoginLogic.MatchLoad("../", "Articles_SearchArticlesInfo");
  16.         if (!IsPostBack)
  17.         {
  18.             DropLoadSet();
  19.         }
  20.     }
  21.     public void DropLoadSet()
  22.     {
  23.         //用品类别
  24.         KeyValue_YPLB.DataTextField = "LBMC";
  25.         KeyValue_YPLB.DataValueField = "ID";
  26.         KeyValue_YPLB.DataSource = EnumGet.UseThingsTypeGetEnum();
  27.         KeyValue_YPLB.DataBind();
  28.         ListItem linone = new ListItem();
  29.         linone.Text = "无";
  30.         linone.Value = "0";
  31.         KeyValue_YPLB.Items.Add(linone);
  32.         KeyValue_YPLB.SelectedIndex = KeyValue_YPLB.Items.Count - 1;
  33.     }
  34.     protected void Button1_Click(object sender, EventArgs e)
  35.     {
  36.         string SqlStr = "";
  37.         SqlStr += " YPMC like '" + RP.SDot(KeyValue_YPMC.Text) + "%' and";
  38.         SqlStr += " YPLB ='" + RP.SDot(KeyValue_YPLB.SelectedValue) + "' and";
  39.         SqlStr += " YPMS like '" + RP.SDot(KeyValue_YPMS.Text) + "%' ";
  40.         int IJJK = 0;
  41.         if(int.TryParse(KeyValue_JJKC.Text,out IJJK))
  42.         {
  43.             SqlStr += " and JJKC <=" + IJJK.ToString();
  44.         }
  45.         SqlStr = Server.UrlEncode(SqlStr);
  46.         Response.Redirect("ArticlesInfoManager.aspx?TiaoJian=" + SqlStr);
  47.     }
  48. }