Microsoft VBScript runtime error '800a01b6' Object doesn't support

A

avi

THisis my error:


Microsoft VBScript runtime error '800a01b6'

Object doesn't support this property or method: 'Session.Add'

/OnlineBookStore/AddItemProcess.asp, line 33



Code i Used:

<%
Dim StrTechName, StrBookName, StrISBN, StrPrice, IntQuantity,
IntCounter, IntCount, IntShowCounter, IntItemID, BlnDuplicate,
IntTotalItems, DblTotalPrice, DblFinalPrice

StrTechName = Trim(Request.Form("TechName"))
StrBookName = Trim(Request.Form("BookName"))
StrISBN = Trim(Request.Form("ISBN"))
StrPrice = Trim(Request.Form("Price"))
IntQuantity = Trim(Request.Form("TxtQuantity"))

IF Session("LoginBuyer") = "" OR Session("LoginUser") = "" Then
Response.Redirect("Default.asp")
END IF

BlnDuplicate = False

IntCount = CInt(Session("TotalItems"))

IF IntCount > 0 Then
For IntCounter = 1 to IntCount
IF Session("MyItems")("ISBN" & IntCounter) = StrISBN And Session
("MyItems")("Purchase" & IntCounter) = "yes" Then
BlnDuplicate = True
Exit For
END IF
Next
END IF

IF BlnDuplicate = True Then
IntQuantity = IntQuantity + CInt(Session("MyItems")("Quantity" &
IntCounter))
Session("MyItems")("Quantity" & IntCounter) = IntQuantity
ELSE
IntItemID = CInt(Session("TotalItems"))
IntItemID = IntItemID + 1
Session("MyItems").Add "BookName" & IntItemID, StrBookName
Session("MyItems").Add "ISBN" & IntItemID, StrISBN
Session("MyItems").Add "Price" & IntItemID, StrPrice
Session("MyItems").Add "Quantity" & IntItemID, IntQuantity
Session("MyItems").Add "Purchase" & IntItemID, "yes"
Session("TotalItems") = Session("TotalItems") + 1
END IF
%>

<table border="0">
<tr>
<td><h3><font face="verdana, arial" color="darkblue">Item Added In
Your Cart!</font></h3></td>
</tr>
</table>
<hr color="black" noshade>
<table border="0">
<tr>
<td class="SimpleText">You are in <b><%= StrTechName %></b>
category.</td>
</tr>
</table>
<table border="1" bordercolor="lightgrey" style="border-
collapse:collapse">
<tr>
<td class="SimpleText"><b>Book Name</b></td>
<td class="SimpleText"><b>ISBN</b></td>
<td class="SimpleText"><b>Quantity</b></td>
<td class="SimpleText"><b>Price</b></td>
<td class="SimpleText"><b>Total Price</b></td>
<td class="SimpleText"><b>Option</b></td>
</tr>
<%
IntCount = CInt(Session("TotalItems"))
For IntShowCounter = 1 to IntCount
IF Session("MyItems")("Purchase" & IntShowCounter) = "yes" Then
IntTotalItems = IntTotalItems + 1
DblTotalPrice = CDbl(Session("MyItems")("Price" & IntShowCounter) *
CInt(Session("MyItems")("Quantity" & IntShowCounter)))
DblFinalPrice = DblFinalPrice + CDbl(DblTotalPrice)
%>
<tr>
<td class="SimpleText"><%= Session("MyItems")("BookName" &
IntShowCounter) %></td>
<td class="SimpleText"><%= Session("MyItems")("ISBN" &
IntShowCounter) %></td>
<td class="SimpleText"><%= Session("MyItems")("Quantity" &
IntShowCounter) %></td>
<td class="SimpleText"><%= Session("MyItems")("Price" &
IntShowCounter) %></td>
<td class="SimpleText"><%= CDbl(DblTotalPrice) %></td>
<td><a href="RemoveItem.asp?ISBN=<%= Session("MyItems")("ISBN" &
IntShowCounter) %>" class="NormalLink">Remove Item</a></td>
</tr>
<%
END IF
Next
%>
</table>
<hr color="black" noshade>
<table border="1" bordercolor="lightgrey" style="border-
collapse:collapse">
<tr>
<td class="SimpleText">Total items in your cart: <b><%=
IntTotalItems %></b></td>
</tr>
<tr>
<td class="SimpleText">Total cost of all items: <b><%= CDbl
(DblFinalPrice) %></b></td>
</tr>
<%
IF IntTotalItems > 0 Then
%>
<tr>
<td><a href="SubmitOrder.asp" class="NormalLink">Submit My Order</
a></td>
</tr>
<%
END IF
%>
</table>
 
E

Evertjan.

avi wrote on 22 nov 2009 in microsoft.public.inetserver.asp.general:
Microsoft VBScript runtime error '800a01b6'

Object doesn't support this property or method: 'Session.Add'

Never heard of 'Session.Add' in classic asp.
 
B

Bob Barrows

avi said:
THisis my error:


Microsoft VBScript runtime error '800a01b6'

Object doesn't support this property or method: 'Session.Add'

/OnlineBookStore/AddItemProcess.asp, line 33



Code i Used:

Well, this can't be the code you're using because nowhere can be found the
string "Session.Add".
It appears from this:

Session("MyItems").Add "BookName" & IntItemID, StrBookName

that you are storing some sort of object that has a method called "Add" in
Session. Hopefully this is not a Dictionary object. To see why, read this:
http://www.aspfaq.com/2053
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top