I'm using this code:
Dim strName
For Each strName in Session.Content s
Response.Write strName & " - " & Session.Content s(strName) & "<BR>"
Next
If I only do a response.write strName, it shows all the session names
but when I include the session.content s it gives me the following
error:
Microsoft VBScript runtime error '800a01c2'
Wrong number of arguments or invalid property assignment
I've been to http://www.aspfaq.com/show.asp?id=2373 and it talks about
using ADODB.Recordset but I'm not accessing data on this page.
Any ideas why this is happening?
Thanks,
--
Jerry
Dim strName
For Each strName in Session.Content s
Response.Write strName & " - " & Session.Content s(strName) & "<BR>"
Next
If I only do a response.write strName, it shows all the session names
but when I include the session.content s it gives me the following
error:
Microsoft VBScript runtime error '800a01c2'
Wrong number of arguments or invalid property assignment
I've been to http://www.aspfaq.com/show.asp?id=2373 and it talks about
using ADODB.Recordset but I'm not accessing data on this page.
Any ideas why this is happening?
Thanks,
--
Jerry
Comment