-
Notifications
You must be signed in to change notification settings - Fork 15
/
prodtype.asp
32 lines (28 loc) · 1.1 KB
/
prodtype.asp
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
<%@ Language=VBScript %>
<%
'========================================================================
'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
'========================================================================
'This is just a simple script to redirect product page links for
'upgraded CactuShop sites to the new Kartris product page URL.
'Note that friendly style CactuShop links are handled in 404.aspx.vb
'instead
strID = request.querystring("PT_ID")
If strID = "" then strID = request.querystring("CAT_ID")
If strID = "" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","Category.aspx"
Else
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","Category.aspx?CategoryID=" & strID
End if
%>