SearchHotels.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 Hotels_SearchHotels : System.Web.UI.Page
  12. {
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.         LoginLogic.MatchLoad("../", "Hotels_SearchHotels");
  16.     }
  17.     protected void Button1_Click(object sender, EventArgs e)
  18.     {
  19.         string SqlStr = "";
  20.         if (!String.IsNullOrEmpty(KeyValue_ZSLBM.Text))
  21.         {
  22.             SqlStr += " ZSLBM like '" + KeyValue_ZSLBM.Text + "%'";
  23.         }
  24.         if (!String.IsNullOrEmpty(KeyValue_BGLDM.Text))
  25.         {
  26.             SqlStr += " and BGLDM like '" + RP.SDot(KeyValue_BGLDM.Text) + "%'";
  27.         }
  28.         int IKeyValue_ZSTS = 0;
  29.         if (int.TryParse(KeyValue_ZSTS.Text, out IKeyValue_ZSTS))
  30.         {
  31.             SqlStr += " and ZSTS = " + IKeyValue_ZSTS.ToString() + ""; 
  32.         }
  33.         if (!String.IsNullOrEmpty(KeyValue_ZSDWDH.Text))
  34.         {
  35.             SqlStr += " and ZSDWDH like '" + KeyValue_ZSDWDH.Text + "%'";
  36.         }
  37.         decimal DKeyValue_ZJG = 0;
  38.         if (decimal.TryParse(KeyValue_ZJG.Text, out DKeyValue_ZJG))
  39.         {
  40.             SqlStr += " and ZJG = " + DKeyValue_ZJG.ToString();
  41.         }
  42.         SqlStr = Server.UrlEncode(SqlStr);
  43.         Response.Redirect("HotelsManager.aspx?TiaoJian=" + SqlStr);
  44.     }
  45. }