Hi guys,
I have a windows mobile application that has html pages generated on the fly (some pages have links in them). With the new browser MSIE 6.0 the links on the pages are not read as links. Basically nothing happens when you click on them...it just creates a dotted border around the links. Has anybody experienced the same issue? My target platform is Windows Mobile 6.5, my target browser is MSIE 6.0. The links work in previous platforms (Windows Mobile 5.0/6.0).
This is my code for displaying data in a web browser:
*************** *************** *************** *****
String sData = "<HTML><HEAD><T ITLE>My Test Page</TITLE></HEAD><BODY>My Test Page<br/><br/>My test link: <a href=\"http://www.google.com\ ">www.google.co m</a></BODY></HTML>";
webBrowser.Docu mentText = sData;
*************** *************** *************** *****
Thank you.
I have a windows mobile application that has html pages generated on the fly (some pages have links in them). With the new browser MSIE 6.0 the links on the pages are not read as links. Basically nothing happens when you click on them...it just creates a dotted border around the links. Has anybody experienced the same issue? My target platform is Windows Mobile 6.5, my target browser is MSIE 6.0. The links work in previous platforms (Windows Mobile 5.0/6.0).
This is my code for displaying data in a web browser:
*************** *************** *************** *****
String sData = "<HTML><HEAD><T ITLE>My Test Page</TITLE></HEAD><BODY>My Test Page<br/><br/>My test link: <a href=\"http://www.google.com\ ">www.google.co m</a></BODY></HTML>";
webBrowser.Docu mentText = sData;
*************** *************** *************** *****
Thank you.
Comment