I am developing simple app and i want lode and display the web page on image tap but i don't want to display header div content that contains menu, logo image.
for that am able to call and display the web page using web browser control on
my C# code id
private void image_Tap(object sender, GestureEventArgs e)
{
webBrowser1.Navigate(new Uri("http://www.my-url.com", UriKind.Absolute));
}
that works fine.
and now how can i remove header tag data(content in b/w < header >< /header > divs).
thanks in advance