I'm trying to use the Rad Editor to build a document, but it seems to change my document when I switch between the design view and html view.
How can this be avoided?
I enter this
and its converted to this
How can this be avoided?
I enter this
| <!-- |
| CUSTOM CODE HERE |
| --> |
| fail |
| <!-- |
| CUSTOM CODE HERE |
| --> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html> |
| <head> |
| </head> |
| <body> |
| some text |
| </body> |
| </html> |
| <!-- |
| CUSTOM CODE HERE |
| --> |
and its converted to this
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html> |
| <head> |
| <!-- |
| CUSTOM CODE HERE |
| --> |
| </head> |
| <body> |
| fail |
| <!-- |
| CUSTOM CODE HERE |
| --> |
| some text |
| <!-- |
| CUSTOM CODE HERE |
| --> |
| </body> |
| </html> |