index.aspx.cs 578 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using CB.Framework;
  8. using CB.Common;
  9. namespace CB.Wap.zs
  10. {
  11. public partial class index : WebPage
  12. {
  13. public string lotTypeName = "#gov";
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. var _lot = WRequest.GetQueryString("lot");
  17. if (!string.IsNullOrEmpty(_lot) && (new string[] { "loc", "hf" }).Any(t => t == _lot))
  18. lotTypeName = "#" + _lot;
  19. }
  20. }
  21. }