Hi, I'm new to this editor and I previously used FCKeditor. With FCKeditor it was possible to just type:
however, how can I do this with CuteSoft editor?
I use a Form View to create the article and this is my page code:
-
<h3>New Article</h3>
-
<asp:FormView ID="FormView1" runat="server" DataKeyNames="ArticleID"
-
DefaultMode="Insert" Width="100%"
-
DataSourceID="NewArticle">
-
<InsertItemTemplate>
-
<table width="100%">
-
<tr>
-
<td width="100px" valign="top"><b>Title</b></td><td align="left"><asp:TextBox ID="ArticleTitleTextBox" runat="server" width="99%"
-
Text=
-
</tr>
-
<tr>
-
<td valign="top"><b>Category</b></td><td align="left">
-
<asp:DropDownList ID="DropDownList1" runat="server" SelectedValue=
-
DataSourceID="AccessDataSource1" DataTextField="CategoryTitle" DataValueField="CategoryID" >
-
</asp:DropDownList>
-
</td>
-
</tr>
-
<tr>
-
<td valign="top"><b>Body</b></td>
-
<td align="left">
-
<CE:Editor id="Editor1" runat="server" =
-
</td>
-
</tr>
-
</table>
-
<div align="right">
-
<asp:Button ID="InsertButton" runat="server" CausesValidation="true" CommandName="Insert" Text="Post Article" Width="100" /></div>
-
</InsertItemTemplate>
-
</asp:FormView>
-
<asp:AccessDataSource ID="NewArticle" runat="server"
-
ConflictDetection="CompareAllValues" DataFile="~/App_Data/ASPNetDB.mdb"
-
InsertCommand="INSERT INTO [Blog_Articles] ([ArticleTitle], [ParentCategoryID], [ArticleBody]) VALUES (?, ?, ?)"
-
OldValuesParameterFormatString="original_{0}">
-
<InsertParameters>
-
<asp:Parameter Name="ArticleTitle" Type="String" />
-
<asp:Parameter Name="ParentCategoryID" Type="Int32" />
-
<asp:Parameter Name="ArticleBody" Type="String" />
-
</InsertParameters>
-
</asp:AccessDataSource>
-
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
-
DataFile="~/App_Data/ASPNetDB.mdb"
-
SelectCommand="SELECT [CategoryID], [CategoryTitle] FROM [Blog_Categories]">
-
</asp:AccessDataSource>
Any help would be much appreciated!