Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub CheckExist()
Dim uri As String
Dim wc As New System.Net.WebClient
uri = "[URL unfurl="true"]http://www.doesnotexist.com/doesnotexist.asp"[/URL]
Try
wc.DownloadData(uri) ' Try to download page
Catch ex As Exception
If Err.Number = 5 Then
' Page does not exist
MsgBox("Page does not exist.")
Else
MsgBox(Err.Number & vbCrLf & Err.Description)
Exit Sub
End If
End Try
MsgBox("Page Exists")
End Sub
Uhhh, I'm not sure that's a good idea.in a SQL Report Server RDL report.