我在这方面取得了一些进展,但仍有一些问题需要解决。
希望这个不会那么难。
我有这个:
For Each item In Request.QueryString("doc").Split(","c)
sb.Append("http://default.html?k=")
sb.Append(item)
sb.Append("&p=2&o=m</p>")
Next
当我测试这段代码时:
Response.Write(sb.ToString())
我得到:
http://default.html?k=122&p=2&o=m
http://default.html?k=123&p=2&o=m
这正是我们正在寻找的
当我们将其分配给如下变量时:
Dim linkList As String = sb.ToString()
但是,当我遍历链接列表并将其写入屏幕时,它只会吐出字母 h。
任何想法我做错了什么以及如果可能的话如何解决它?
Dim link As String
For Each link I linkList
'let me know if I am still getting the links
response.write link
'we will save all the links later
Next
一如既往,非常感谢您的帮助