代码修改后的版本,全部提交
This commit is contained in:
27
Mtxfw.shop/_Admin/showlicense.aspx.cs
Normal file
27
Mtxfw.shop/_Admin/showlicense.aspx.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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() + ""));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user