c# - How to open URL using web Browser Control in Windows Phone -


i trying open webbrowser using webbrowser control.

c# code

string uristring = "http://......." uri uri = new uri(uristring); this.demobrowser.navigate(uri); 

the problem facing , url opening using "http" giving below error when trying open using "https".

enter image description here

any appreciated. thank you


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -