NotificationDetail.aspx.cs
资源名称:H3_OA.rar [点击查看]
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- namespace OThinker.H3.Portal
- {
- public partial class NotificationDetail : OThinker.H3.Portal.PortalPage
- {
- protected string NotificationID
- {
- get
- {
- // 获得ID
- return this.Request.QueryString[Param_NotificationID];
- }
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- OThinker.H3.Notification.Notification notification = OThinker.H3.Server.Engine.Notifier.Read(this.NotificationID);
- if (notification == null)
- {
- return;
- }
- if (notification.Content != null)
- {
- this.lblDetail.Text = notification.Content.Replace("rn", "<BR>");
- }
- }
- }
- }