%@LANGUAGE="VBSCRIPT"%>
<%
' *** Edit Operations: declare variables
MM_editAction = CStr(Request("URL"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Request.QueryString
End If
' boolean to abort record edit
MM_abortEdit = false
' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables
If (CStr(Request("MM_insert")) <> "") Then
Session("Message") = ""
MM_editConnection = MM_OLEDB_STRING
MM_editTable = "dbo.tblSHOP_Categories"
MM_editRedirectUrl = ""
MM_fieldsStr = "CategoryName|value|Description|value|ImageName|value"
MM_columnsStr = "CategoryName|',none,''|Description|',none,''|ImageName|',none,''"
' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")
' set the form values
For i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(i+1) = CStr(Request.Form(MM_fields(i)))
Next
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Update Record: set variables
If (CStr(Request("MM_update")) <> "" And CStr(Request("MM_recordId")) <> "") Then
Session("Message") = ""
MM_editConnection = MM_OLEDB_STRING
MM_editTable = "dbo.tblSHOP_Categories"
MM_editColumn = "CategoryID"
MM_recordId = "" + Request.Form("MM_recordId") + ""
MM_editRedirectUrl = ""
MM_fieldsStr = "CategoryName|value|Description|value|ImageName|value"
MM_columnsStr = "CategoryName|',none,''|Description|',none,''|ImageName|',none,''"
' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")
' set the form values
For i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(i+1) = CStr(Request.Form(MM_fields(i)))
Next
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it
If (CStr(Request("MM_insert")) <> "") Then
Session("Message") = ""
' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For i = LBound(MM_fields) To UBound(MM_fields) Step 2
FormVal = MM_fields(i+1)
MM_typeArray = Split(MM_columns(i+1),",")
Delim = MM_typeArray(0)
If (Delim = "none") Then Delim = ""
AltVal = MM_typeArray(1)
If (AltVal = "none") Then AltVal = ""
EmptyVal = MM_typeArray(2)
If (EmptyVal = "none") Then EmptyVal = ""
If (FormVal = "") Then
FormVal = EmptyVal
Else
If (AltVal <> "") Then
FormVal = AltVal
ElseIf (Delim = "'") Then ' escape quotes
FormVal = "'" & Replace(FormVal,"'","''") & "'"
Else
FormVal = Delim + FormVal + Delim
End If
End If
If (i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End if
MM_tableValues = MM_tableValues & MM_columns(i)
MM_dbValues = MM_dbValues & FormVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"
If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<%
' *** Update Record: construct a sql update statement and execute it
If (CStr(Request("MM_update")) <> "" And CStr(Request("MM_recordId")) <> "") Then
Session("Message") = ""
' create the sql update statement
MM_editQuery = "update " & MM_editTable & " set "
For i = LBound(MM_fields) To UBound(MM_fields) Step 2
FormVal = MM_fields(i+1)
MM_typeArray = Split(MM_columns(i+1),",")
Delim = MM_typeArray(0)
If (Delim = "none") Then Delim = ""
AltVal = MM_typeArray(1)
If (AltVal = "none") Then AltVal = ""
EmptyVal = MM_typeArray(2)
If (EmptyVal = "none") Then EmptyVal = ""
If (FormVal = "") Then
FormVal = EmptyVal
Else
If (AltVal <> "") Then
FormVal = AltVal
ElseIf (Delim = "'") Then ' escape quotes
FormVal = "'" & Replace(FormVal,"'","''") & "'"
Else
FormVal = Delim + FormVal + Delim
End If
End If
If (i <> LBound(MM_fields)) Then
MM_editQuery = MM_editQuery & ","
End If
MM_editQuery = MM_editQuery & MM_columns(i) & " = " & FormVal
Next
MM_editQuery = MM_editQuery & " where " & MM_editColumn & " = " & MM_recordId
If (Not MM_abortEdit) Then
' execute the update
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<%
set rsCATEGORIES = Server.CreateObject("ADODB.Recordset")
rsCATEGORIES.ActiveConnection = MM_OLEDB_STRING
rsCATEGORIES.Source = "SELECT * FROM dbo.tblSHOP_Categories"
rsCATEGORIES.CursorType = 0
rsCATEGORIES.CursorLocation = 2
rsCATEGORIES.LockType = 3
rsCATEGORIES.Open()
rsCATEGORIES_numRows = 0
%>
<%
set Images = Server.CreateObject("ADODB.Command")
Images.ActiveConnection = MM_ADOSQL_STRING
Images.CommandText = "dbo._SP_SELECT_IMAGES_ADM"
Images.Parameters.Append Images.CreateParameter("RETURN_VALUE", 3, 4)
Images.CommandType = 4
Images.CommandTimeout = 0
Images.Prepared = true
set rsIMAGES = Images.Execute
rsIMAGES_numRows = 0
%>
<%
if request("delete") = "1" then
set DeleteCategory = Server.CreateObject("ADODB.Command")
DeleteCategory.ActiveConnection = MM_OLEDB_STRING
DeleteCategory.CommandText = "dbo.spSHOP_DeleteCategory"
DeleteCategory.CommandType = 4
DeleteCategory.CommandTimeout = 0
DeleteCategory.Prepared = true
DeleteCategory.Parameters.Append DeleteCategory.CreateParameter("@CategoryID", 3, 1,4,Request("CategoryID"))
Set rsRETURN = DeleteCategory.Execute()
If rsRETURN("ReturnValue") = "0" Then
Session("Message") = "New Category has been deleted successfully."
response.redirect "SHOP_ManageCategories.asp"
ElseIf rsRETURN("ReturnValue") = "1" Then
Session("Message") = "Category can not be deleted because it is being used."
response.redirect "SHOP_ManageCategories.asp"
End If
end if
%>
<%
Dim Message: Message = Session("Message")
%>
<%
Dim Repeat1__numRows
Repeat1__numRows = -1
Dim Repeat1__index
Repeat1__index = 0
rsCATEGORIES_numRows = rsCATEGORIES_numRows + Repeat1__numRows
%>
<% If NOT rsCATEGORIES.EOF Then
Dim CounterEdit: CounterEdit = 0
Dim BGColor: BGColor = "#D2D2D2"
%>
<%
While ((Repeat1__numRows <> 0) AND (NOT rsCATEGORIES.EOF))
%>
<%
If BGColor = "#D2D2D2" Then
BGColor = "#FFFFFF"
Else
BGColor= "#D2D2D2"
End If
%>