我有应该运行atau到URL的过程,但它应该for循环运行:如何运行的Response.Redirect在for循环
For i = 0 To ds.Tables(0).Rows.Count - 1
idCustomer = ds.Tables(0).Rows(i)("House").ToString()
amt = ds.Tables(0).Rows(i)("OPR_BALANCE").ToString()
lang = "0"
aid = "000000"
Dim result As String = "http://soap.Services.com:2121/WS.aspx/?c=1&id=" + idCustomer + "&lang=" + lang + ""
Response.Redirect(result)
Next
但现在,根据我的代码,重定向到网址,并且进度自动停止,因为它的重定向。
是否有可能通过重定向到URL for循环运行进程?
谢谢,它可以帮助我很多:) – Sabilv