1
我有以下代碼:獲得在線文本文件用戶名和密碼
Dim userName As String
Dim passWord As String
'
' Populate userName and passWord from an online text file ...
'
If textbox1.text = userName AndAlso Textbox2.text = passWord Then
MsgBox("Welcome")
Else
MsgBox("UserName or Password incorrect")
End If
我如何從一個包含類似數據的URL驗證針對在線文本文件的用戶名和密碼:
User;Password