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