i used if e.Url.AbsoluteUri equals to a certain url, then a procedure happens. but how can i make it so that the url starts with a certain specific string, and then if it ends by anything
ex.: https://login.live.com/*
something like that
thnx
Phil
Printable View
i used if e.Url.AbsoluteUri equals to a certain url, then a procedure happens. but how can i make it so that the url starts with a certain specific string, and then if it ends by anything
ex.: https://login.live.com/*
something like that
thnx
Phil
You could set the URI to a string (using .ToString) and then do a String1.contains("YourURLString") to see if it contains what you want.
Hope this helps
D
actually, that would work. thanks