Hi Mitchel Sellers
thanks for replying. Ok I understand create a page and add HTML module from the module list.
But my page looks like this....
- 20 labels + fields e.g. naam, adres
- Htmleditor....
- 15 fields + fields
- Save button
When you click the save button it should save the fields to the database en htmleditor.TEXT (contents) to a field in the database.
so I need to use an HTMLEditor with the usercontrol.... so that I can get the contents programmatically ?
Do you know how to achieve this with DNN HTML module? I can't add extra fields in the editor and do some C# programming work in code-behind.
In fact I can do this with Ajaxtoolkit.HTMLEditor... and it works fine.... But the problem is there is no IMAGE button in this control....
thanks for your advice?
thanks
mesut
e.g.
<tr>
<td>
<asp:Label runat="server" ID="lblName" Text="Name" />
</td>
<td>
<asp:TextBox runat="server" ID="txtName" />
</td>
</tr>
<tr>
<td>
<HTMLEditor:Editor runat="server" ID="HtmlEditor1" Height="300px" Width="100%" ActiveMode="Design" />
</td>
</tr>
code behind:
//move htlm to a database field
database.field1 = Htmleditor1.Content...