27 lines
717 B
C#
27 lines
717 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.UI;
|
|||
|
|
using System.Web.UI.WebControls;
|
|||
|
|
|
|||
|
|
namespace Mtxfw.shop._admin
|
|||
|
|
{
|
|||
|
|
public partial class showlicense : Mtxfw.Utility.AdminPage
|
|||
|
|
{
|
|||
|
|
public Mtxfw.DAL.business_info daoBus = new Mtxfw.DAL.business_info();
|
|||
|
|
public string strQX="";
|
|||
|
|
protected override void OnLoad(EventArgs e)
|
|||
|
|
{
|
|||
|
|
base.OnLoad(e);
|
|||
|
|
if (!IsPostBack)
|
|||
|
|
{
|
|||
|
|
if (Request.QueryString["ID"] != null)
|
|||
|
|
{
|
|||
|
|
Mtxfw.Utility.Tools.ToBind(Repeater1, daoBus.GetList("Id=" + Request.QueryString["ID"].ToString() + ""));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|