1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using CB.Framework;
- using CB.Common;
- namespace CB.Wap.zs
- {
- public partial class index : WebPage
- {
- public string lotTypeName = "#gov";
- protected void Page_Load(object sender, EventArgs e)
- {
- var _lot = WRequest.GetQueryString("lot");
- if (!string.IsNullOrEmpty(_lot) && (new string[] { "loc", "hf" }).Any(t => t == _lot))
- lotTypeName = "#" + _lot;
- }
- }
- }
|