alexandros12
Programmer
- Oct 12, 2003
- 4
Hi there !
I know that i can nowhere find a solution to this . But i try once more.
Do you know how source code preservation for the webbrowser control can be accomplished.
I mean like the old DHTML Edit control did have a flag to
preserve html in the format it is when it is specified by the user.
If the user gives this as an input for the webbrowser control document
<html>
<a href="aaaa"> hello<br>
<table></table>
then the webbrowser control will automatically transform this document into something like this:
........
<META>
<HTML>
<A HREF="aaaa">hello<BR>
<TABLE><TBODY></TBODY></TABLE>
this means the source is completely being changed.
I want to avoid this.
Somebody told me to write a wrapper. Now i do not have information of how i can do this for the MSHTML Document that the webbrowser control is using.
Thanks !
I know that i can nowhere find a solution to this . But i try once more.
Do you know how source code preservation for the webbrowser control can be accomplished.
I mean like the old DHTML Edit control did have a flag to
preserve html in the format it is when it is specified by the user.
If the user gives this as an input for the webbrowser control document
<html>
<a href="aaaa"> hello<br>
<table></table>
then the webbrowser control will automatically transform this document into something like this:
........
<META>
<HTML>
<A HREF="aaaa">hello<BR>
<TABLE><TBODY></TBODY></TABLE>
this means the source is completely being changed.
I want to avoid this.
Somebody told me to write a wrapper. Now i do not have information of how i can do this for the MSHTML Document that the webbrowser control is using.
Thanks !