using SysDataLibs; using SysDataLibs.TableClass; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace GSMarketSys.SystemModule { public partial class ShowLawAndRuleDetail : System.Web.UI.Page { UserSession _UserSession; protected void Page_Load(object sender, EventArgs e) { _UserSession = WebLibs.CheckLogin(); string LawRuleId = Request["LawRuleId"]; if (!string.IsNullOrEmpty(LawRuleId)) { LawRule_info lTbl = new LawRule_info(LawRuleId, _UserSession.DBConn); ShowContent.InnerHtml = lTbl.Content; } } } }