When editing an article with the Ewebeditor editor (that is, when you modify the article), have you ever encountered, was automatically truncated the last paragraph of a few lines of text, all the text ran into the box outside the situation?
When editing an article with the Ewebeditor editor (that is, when you modify the article), have you ever encountered, was automatically truncated the last paragraph of a few lines of text, all the text ran into the box outside the situation?
The reason is this
The official presentation method is
Add to
<input type= "hidden" name= "Content1" "value=" ">
<iframe id= "EWebEditor1" src= "Ewebeditor.htm?id=content1&style=coolblue" frameborder= "0" scrolling= "no" Width= "height=" "style=" margin-top:10px; ></iframe>
So a lot of people will write it when they change it.
<input type= "hidden" name= "Content1" value= "<%=rs" ("content")%> ">
<iframe id= "EWebEditor1" src= "Ewebeditor.htm?id=content1&style=coolblue" frameborder= "0" scrolling= "no" Width= "height=" "style=" margin-top:10px; ></iframe>
In fact, it's okay. You just need to copy the content to the text document (which clears the HTM code) when you add it, but it's a hassle to copy to the editor.
The best way to do this is to change the text field to a text area:
is to put <input type= "hidden" ... This paragraph is replaced by <textarea style= "Display:none" .... Such
Perfect solution to this problem Ye