Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am developing in the metro environment. The user will search for an article on an internal business system which will then be displayed.

This system is used over the interent and the resultign pages are .aspx pages.

I've tried using the webview control and setting the source to the uri containing the url link to no prevail. After reading up it seems the webview only displayed html content. Has anyone got any idea how i display the .aspx page?

C#
string link = @"http://www.webpage.aspx?article=8229";
Uri myuri = new Uri(link);
contentView.Navigate(myuri);


This block of code works if i set the link to googles web address. Does anyone have an alternative method of displayign a different type of web page?
Posted
Updated 6-Feb-13 23:49pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900