Adam wrote: |
<formname="theForm"action="Get_HtmlContent.asp"method="post"ID="Form1"> <textareaname="Editor2_HTMLContent"ROWS=3COLS=30></ form> Now you want to replace your Textarea to a web based WYSIWYG HTML editor. <formname="theForm"action="Get_HtmlContent.asp"method="post"ID="Form1"> <% Dim editor Set editor = New CuteEditor editor.ID = "Editor1" editor.Text = content eitor.FilesPath = "/ASP/CuteEditor_Files" editor.ImageGalleryPath = "/Uploads" editor.MaxImageSize = 50 editor.Height = 240 editor.Draw() %> </form> |
|
In the textarea example the content of the textarea is passed to the form handler in the formfield name of "Editor2_HTMLcontent". By what formfield name is the content of CuteEditor in teh second example passed to the form handler?
I want to include CuteEditor as a replacement for a textarea box on an existing form. The data submitted by the form is further processed and manipulated by the form processor and I am trying to understand how the form processor will identify that editor content.
--Tony