SupplierLog.aspx.cs 611 B

12345678910111213141516171819202122232425262728293031323334
  1. using SQLData;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using Utils.Serialization;
  10. using SiteCore;
  11. public partial class sys_SupplierLog : BasePage
  12. {
  13. protected override void OnPreInit(EventArgs e)
  14. {
  15. PmTag = "supplierlog";
  16. _refreshVisible = true;
  17. _choiceVisible = true;
  18. _selfCheckPermission = true;
  19. }
  20. protected void Page_Load(object sender, EventArgs e)
  21. {
  22. if (!IsPostBack)
  23. {
  24. //initBind();
  25. }
  26. }
  27. }