I was wondering how to Check if my webbrowser control is at a cirtain page...
My problem is that that page includes a "sessionID" which means a simple
IF page.url = needed_page then |
Does anyone know the answer
I was wondering how to Check if my webbrowser control is at a cirtain page...
My problem is that that page includes a "sessionID" which means a simple
IF page.url = needed_page then |
Is at website...
schildr
RyanMcClellan
page.url.AbsolutePath
page.url.AbsoluteUri
page.url.Query
Kmad
any ideas
Cridal69
Dave Breuer
why don't you check the beginning of the url :
If page.url.BeginsWith(needed_page) Then
Mohamed Hussein
http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcn7/html/vaconmanipulatingstrings.asp
ps. you can use Split function to do that, or even better a regular expression.