我有应该运行 atau 的进程转到 url ,但它应该在 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 循环上的 URL 来运行进程?