| 12345678910111213141516171819202122232425262728293031323334 |
- using SQLData;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Utils.Serialization;
- using SiteCore;
- public partial class sys_SupplierLog : BasePage
- {
- protected override void OnPreInit(EventArgs e)
- {
- PmTag = "supplierlog";
- _refreshVisible = true;
- _choiceVisible = true;
- _selfCheckPermission = true;
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- //initBind();
- }
- }
- }
|