Hi,
I'm making a simple utility for browsing an intra-net site using VB.net webbrowser and for reasons outside my control, everything requires a passcode to be accessed. So, for example,
Index.html
is blocked by the company server but
Index.html?pass=123456
is allowed.
Is there a way to get the web browser to automatically add the "?pass=123456" bit to the end of every URL? Including images/ other content?
I'll take care of only using the "?pass=123456" on intra net sites, but what I need help with is getting it to Auto append.
I don't have VB on this computer, but I'm thinking of something like this:
Public Sub Webbrowser1_Navigate() Handles Webbrowser1.Navigate
'Preform intra-net check here
Webbrowser1.Location += "?pass=123456"
Webbrowser1.navigate()
Any thoughts?