
Prevent WB altering my HTML?
Hello, The software I'm writing at the moment uses the WebBrowser control
to view web pages. I have created a little scripting language, that is
inserted into the HTML pages on the server. When I view them in my app the
scripts can change settings and perform some simple actions (on my software
only). And here is the problem. consider this bit of HTML from one such
page.
<p>
Some Text
</p>
<META name="RangeS">
</body>
</html>
<META name="RangeE">
The meta tags RangeS and RangeE define a Range of HTML that my App needs to
work on. BUT the web browser control translates it like so.... Putting my
RangeE within the body of the document..
<p>
Some Text
</p>
<META name="RangeS">
<META name="RangeE">
</body>
</html>
Can any one help me find away around this? I need it to be just like the
first example. Or do you know some tags that are not affected in this way
rather then META tags?
--
BobS