No because I am not creating the initial source for that page....
What would it do if you put a little form on the page with form and /form tags and a text box.. does it mess up the code you specify?
I did type in a form on that page in html mode, and it does mess with the code, probably actually fixing it.
One thing about my code though, is that all the pages have this at the top of the page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
On my page ... I go into html mode and type in this:
<form action="/rise/formproc.asp?uid={***}" method="post" >
<table width="95%">
<tr>
<td>Sample textbox</td>
<td><input type="text" maxlength="12" size="20" value="sample text" name="t1"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Submit" name="b1" ></td>
</tr>
</table>
</form>
.... Then I go into "normal" mode and then right back to html mode and this is what I see:
<form accept-charset="UNKNOWN" action="/rise/formproc.asp?uid={***}" method="post" enctype="application/x-www-form-urlencoded">
<table width="95%">
<tbody>
<tr>
<td>Sample textbox</td>
<td><input start="fileopen" type="text" height="41647104" maxlength="12" loop="1" size="20" value="sample text" name="t1" /></td>
</tr>
<tr>
<td colspan="2"><input start="fileopen" type="submit" height="41662840" maxlength="2147483647" loop="1" size="20" value="Submit" name="b1" /></td>
</tr>
</tbody>
</table>
</form>
...
All of that additional stuff was added by cute.
I will do some more digging and get some more info. This is running on a windows 2000 advanced server VIRTUAL machine using vmware. I don't know if that makes a diff ... shouldn't though...