-
Notifications
You must be signed in to change notification settings - Fork 15
/
Closed.aspx.vb
25 lines (20 loc) · 935 Bytes
/
Closed.aspx.vb
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
'========================================================================
'Kartris - www.kartris.com
'Copyright 2024 CACTUSOFT
'GNU GENERAL PUBLIC LICENSE v2
'This program is free software distributed under the GPL without any
'warranty.
'www.gnu.org/licenses/gpl-2.0.html
'KARTRIS COMMERCIAL LICENSE
'If a valid license.config issued by Cactusoft is present, the KCL
'overrides the GPL v2.
'www.kartris.com/t-Kartris-Commercial-License.aspx
'========================================================================
Partial Class _Closed
Inherits System.Web.UI.Page
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
'If this page is called or hit by anyone when store is open, send
'them to home page.
If KartSettingsManager.GetKartConfig("general.storestatus") = "open" Then Response.Redirect("~/")
End Sub
End Class