以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [讨论]多行文本网址打开  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=101612)

--  作者:gsnake
--  发布时间:2017/6/3 23:26:00
--  [讨论]多行文本网址打开
If e.Form.Controls("TextBox1").value IsNot Nothing Then
    For i As Integer = 0 To e.Form.Controls("TextBox1").Lines.Length - 1
        \'Messagebox.Show(e.Form.Controls("TextBox1").Lines(i))
        Dim Proc As New Process
        Proc.File = e.Form.Controls("TextBox1").Lines(i)
        Proc.Start()
    Next
End If

如果浏览器是开着的,两个网址能同时打开
如果浏览器没打开,只打开第一个网址


--  作者:有点色
--  发布时间:2017/6/4 11:09:00
--  
If e.Form.Controls("TextBox1").value IsNot Nothing Then
    For i As Integer = 0 To e.Form.Controls("TextBox1").Lines.Length - 1
        Dim Proc As New Process
        Proc.File = e.Form.Controls("TextBox1").Lines(i)
        Proc.Start()
        system.threading.thread.sleep(100)
    Next
End If