rule_3dsjhkj.aspx.cs 846 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using CB.Entity;
  8. namespace CB.Wap.column
  9. {
  10. public partial class rule_3dsjhkj : CB.Framework.WebPage
  11. {
  12. protected string columnNav = "";
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15. InitData();
  16. }
  17. protected override void InitData()
  18. {
  19. columnNav = GetColumnNavForWap("3d");
  20. ColumnInfo entity = CB.Data.Caches.GetColumnInfo("3dsjhkj");
  21. if (entity == null)
  22. {
  23. ShowError();
  24. }
  25. pageTitle = entity.hTitle;
  26. pageKeyWords = entity.hKeywords;
  27. pageDescription = entity.hDescription;
  28. base.InitData();
  29. }
  30. }
  31. }