123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using CB.Entity;
- namespace CB.Wap.column
- {
- public partial class rule_3dsjhkj : CB.Framework.WebPage
- {
- protected string columnNav = "";
- protected void Page_Load(object sender, EventArgs e)
- {
- InitData();
- }
- protected override void InitData()
- {
- columnNav = GetColumnNavForWap("3d");
- ColumnInfo entity = CB.Data.Caches.GetColumnInfo("3dsjhkj");
- if (entity == null)
- {
- ShowError();
- }
- pageTitle = entity.hTitle;
- pageKeyWords = entity.hKeywords;
- pageDescription = entity.hDescription;
- base.InitData();
- }
- }
- }
|