increase by one every time

bcm

Well-known member
Joined
Aug 13, 2007
Messages
56
Programming Experience
Beginner
I want to retrive data for this path which i can do, but the problem is I want the lastpart i.e. 1378 to increase by one every time

"http://www.cric8.com/livescorecard/od_minicard2_1378.html"

How can I do that in VB.NET2003???
 
dim varNumber as integer = 1378
do
dim strURL as string = "http://www.cric8.com/livescorecard/od_minicard2_" & cstr(varNumber) & ".html"
varNumber += 1
loop
 
Back
Top