forked from DNNCommunity/DNN.FormAndList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelpPopup.aspx.cs
34 lines (29 loc) · 947 Bytes
/
HelpPopup.aspx.cs
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
using System;
using System.Diagnostics;
using DotNetNuke.Framework;
using DotNetNuke.Services.Localization;
namespace DotNetNuke.Modules.UserDefinedTable
{
public partial class HelpPopup : PageBase
{
#region Vom Web Form Designer generierter Code
[DebuggerStepThrough]
void InitializeComponent()
{
}
void Page_Init(object sender, EventArgs e)
{
InitializeComponent();
}
#endregion
void Page_Load(object sender, EventArgs e)
{
var content = Request.QueryString["resourcekey"];
if (content.ToLowerInvariant() == "help_hiddencolumns" || content.ToLowerInvariant() == "help_tokens_6")
{
Title = Localization.GetString(content + "_Title", LocalResourceFile);
lblContent.Text = Localization.GetString(content + "_Body", LocalResourceFile);
}
}
}
}