using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
using System.Web.UI;
|
using System.Web.UI.WebControls;
|
using CY.Model;
|
using CY.BLL;
|
using CY.Infrastructure.Common;
|
using System.Data;
|
using CY.BLL.Sys;
|
|
namespace CY.WebForm.Pages.InfoManage
|
{
|
//吴辉
|
//联盟信息详情
|
public partial class Info_AllianceDetail : BasePage
|
{
|
Info_AllianceBLL bll_Info_AllianceBLL = null;
|
Sys_DictionaryBLL bll_Sys_DictionaryBLL = null;
|
|
//初始化
|
public Info_AllianceDetail()
|
{
|
bll_Info_AllianceBLL = new Info_AllianceBLL();
|
bll_Sys_DictionaryBLL = new Sys_DictionaryBLL();
|
}
|
|
//页面加载
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
if (!IsPostBack)
|
{
|
InitData();
|
}
|
}
|
|
//页面加载
|
public void InitData()
|
{
|
Info_Alliance m_Info_Alliance = new Info_Alliance();
|
if (Request["Keyid"] != null && Request["Keyid"].ToInt32() > 0)
|
m_Info_Alliance = bll_Info_AllianceBLL.SelectModelByKeyId(Request["Keyid"].ToInt32());
|
|
if (m_Info_Alliance != null)
|
{
|
this.spanTitle.InnerText = m_Info_Alliance.Title.ToString2();
|
this.spanSortID.InnerText = m_Info_Alliance.Type.ToString2();
|
this.divInfoContent.InnerHtml = m_Info_Alliance.InfoContent.ToString2();
|
this.spanOrderNum.InnerText = m_Info_Alliance.OrderNum.ToString2();
|
this.spanUpTime.InnerText = m_Info_Alliance.LastUpdateTime.ToString2();
|
this.spanCreatTime.InnerText = m_Info_Alliance.CreatTime.ToString2();
|
}
|
}
|
}
|
}
|