-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArticlePage.aspx.cs
More file actions
54 lines (47 loc) · 1.51 KB
/
Copy pathArticlePage.aspx.cs
File metadata and controls
54 lines (47 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Reflection;
public partial class ArticlePage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.LoadPage();
}
private void LoadPage()
{
if (Request["pageID"] == null)
{
this.Master._Logger.Error(new AdminException
(". Request[\"pageID\"] == null"), MethodBase.GetCurrentMethod().Name);
Response.Redirect("Default.aspx?error=true");
}
try
{
Article page = (Article)this.Master._CoachingDal.Get("article", (string)Request["pageID"]);
if (page == null)
{
throw new AdminException(". page == null");
}
if (page.ArticleLanguageID.Trim() == "1")
{
this.article.Attributes["class"] = "hebrew";
}
if (page.ArticleLanguageID.Trim() == "2")
{
this.article.Attributes["class"] = "english";
}
this.Master._GlobalFunctions.SetPageSEO
(page.ArticleTitle, page.ArticleDescription, page.ArticleKeyWords, this.Page);
this.article.InnerHtml = page.ArticleContent;
}
catch (Exception e)
{
this.Master._Logger.Error(e, MethodBase.GetCurrentMethod().Name);
Response.Redirect("Default.aspx?error=true");
}
}
}