forked from sanalog/Sanalog-1.5.2-Web
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSnlgPages.aspx.cs
More file actions
23 lines (20 loc) · 941 Bytes
/
SnlgPages.aspx.cs
File metadata and controls
23 lines (20 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Web.UI.WebControls;
using System.Web.UI;
public partial class SnlgPage_aspx : Snlg_InterfaceBaseClass
{
protected void Page_PreInit(object sender, EventArgs e)
{
//dizayn modunda değilse
if (string.IsNullOrEmpty(Request.QueryString["sablonDesignId"]))
{
form1.Action = Request.RawUrl;
ScriptOrCssFileImportHead(Snlg_ConfigValues.ThemePath + "css/bootstrap.min.css");
ScriptOrCssFileImportHead(Snlg_ConfigValues.ThemePath + "css/font-awesome.min.css");
ScriptOrCssFileImportHead(Snlg_ConfigValues.ThemePath + "css/style.css");
ScriptOrCssFileImportHead(Snlg_ConfigValues.ThemePath + "css/modules.css");
ScriptOrCssFileImportAfterBody(Snlg_ConfigValues.ThemePath + "js/bootstrap.min.js");
ScriptOrCssFileImportAfterBody(Snlg_ConfigValues.ThemePath + "js/bootbox.min.js");
}
}
}