Re: Multiple-step operation generated errors. Check each status value.
- From: "Bob Barrows [MVP]" <reb01501@xxxxxxxxxxxxxxx>
- Date: Thu, 6 Jul 2006 09:38:47 -0400
Bob Barrows [MVP] wrote:
And, when using it:Oops, left out the Else clause:
dim arData, arEmpty(), i
arData=Session("my_fav")
if Not IsArray(arData) then
redim arEmpty(1,0)
arData = arEmpty
End If
i=ubound(arData,2)
arData(0,i) = cInt(Request.QueryString("BPID"))
arData(1,i) = Request.QueryString("Title")
Session("my_fav") = arData
dim arData, arEmpty(), i
arData=Session("my_fav")
if Not IsArray(arData) then
redim arEmpty(1,0)
arData = arEmpty
Else
redim preserve arData(ubound(arData,1), ubound(arData,2) + 1)
End If
i=ubound(arData,2)
arData(0,i) = cInt(Request.QueryString("BPID"))
arData(1,i) = Request.QueryString("Title")
Session("my_fav") = arData
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
.
- Follow-Ups:
- References:
- Multiple-step operation generated errors. Check each status value.
- From: frohlinger
- Re: Multiple-step operation generated errors. Check each status value.
- From: Bob Barrows [MVP]
- Re: Multiple-step operation generated errors. Check each status value.
- From: Bob Barrows [MVP]
- Multiple-step operation generated errors. Check each status value.
- Prev by Date: Re: Multiple-step operation generated errors. Check each status value.
- Next by Date: ADODB.Connection.OpenSchema from C#.NET 2.0
- Previous by thread: Re: Multiple-step operation generated errors. Check each status value.
- Next by thread: Re: Multiple-step operation generated errors. Check each status value.
- Index(es):