M
marcwentink
This is probably a very simple issue but I cannot find the answer
googling at the moment.
I got this function in a ASP-page VB code
Private Sub GoToTheOtherWebSite()
Dim InternetAdresPR As String
InternetAdresPR = AppSettings.TheOtherWebSite
Response.Redirect(InternetAdresPR)
End Sub
Now instead of redirecting to the other website, I want to open a new
browser window with the other website. In HTML I know what to do, but
is there some ASP-VB function to do it from the code, since in HTML I
cannot ask the AppSettings value I think.
googling at the moment.
I got this function in a ASP-page VB code
Private Sub GoToTheOtherWebSite()
Dim InternetAdresPR As String
InternetAdresPR = AppSettings.TheOtherWebSite
Response.Redirect(InternetAdresPR)
End Sub
Now instead of redirecting to the other website, I want to open a new
browser window with the other website. In HTML I know what to do, but
is there some ASP-VB function to do it from the code, since in HTML I
cannot ask the AppSettings value I think.