Hi Guys,
I have simple WPF app which contains the WebBrowser control. In the WebBrowser control I am displaying a hyperlink using the code
wb.NavigateToString("<html><head></head><body><a href='http://intranetpage/test.aspx'>Click here </a></body></html>");
The problem:
When my string contains internal url (intranet website), when i click on the hyperlink nothing
happens. But, I put external URL i.e.
wb.NavigateToString("<html><head></head><body><a href='http://www.google.com'>Click here </a></body></html>");
it works. I am puzzled. Any help would be appreciated.