I am new in windows phone development. Now I am developing a windows phone application for a asp.net application that we developed before. In asp.net there we showing an advertisement part. There I used iframe in a div to show the advertisement.
Now I also want to show the advertisement in windows phone app too. Is iframe can use in windows phone. I tried it, but showing errors.
Can anyone suggest a good way to do this ?
Thanks in advance.
From your comments above, it looks like you are trying to add HTML into your XAML markup. This is not supported by the XAML parser. To create a HTML page with an IFrame, you have to assemble it as a string and send it to the browser control via WebBrowser.NavigateToString.