SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Pastimes : Silicon Investor, under the hood

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Tom C who wrote (38)1/8/2005 8:07:25 PM
From: SI Dave  Read Replies (1) of 81
 
Tom, thanks but I don't know how to convert what you are suggesting into practical code. I can barely keep my head above water in VB script and asp Classic. In .NET, I wouldn't know a method from a property if it slithered up and bit me.

What I'm looking is the vb.net equivalent of vb.script/asp.

Take this (sample) URL:
si.com

asp classic code:
Dim item
For Each item In Request.querystring("id")
Response.write(item & "<br>")
Next

Results in:
aaa
bbb
ccc

aspx code:

Dim item As String
For Each item In Request.querystring("id")
Response.write(item & "<br>")
Next

Results in:
a
a
a
,
b
b
b
,
c
c
c

This is probably as basic as it gets (no pun intended), but I need a "connect the dots" fix to make this work.
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext