32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace SuperMap.RealEstate.HighWay.CloudModule.Commodity
|
|
{
|
|
public partial class DefaultTabSheet : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (IsPostBack)
|
|
return;
|
|
if (Request["RegionCommodity"] == "true")
|
|
{
|
|
this.Master_TabSheet.Add("商品信息", "RegionCommodity/COMMODITYPage.aspx" + this.Request.Url.Query);
|
|
}
|
|
else
|
|
{
|
|
this.Master_TabSheet.Add("商品信息", "COMMODITYPage.aspx" + this.Request.Url.Query);
|
|
}
|
|
this.Master_TabSheet.Add("审批信息", "COMMODITYApprove.aspx" + this.Request.Url.Query);
|
|
this.Master_TabSheet.Add("历史信息", "HCommodityList.aspx" + this.Request.Url.Query);
|
|
if (Request["RegionCommodity"] == "true")
|
|
{
|
|
this.Master_TabSheet.Add("分布信息", "RegionCommodity/CommodityList.aspx" + this.Request.Url.Query);
|
|
}
|
|
}
|
|
}
|
|
} |