我正在尝试将CKEditor与详细信息视图集成.我的示例代码是:
<asp:DetailsView ID="DetailsViewStation" runat="server" Height="50px" AutoGenerateRows="False"
DataKeyNames="StationNo" DataSourceID="StationSqlDataSource" CellPadding="4"
ForeColor="#333333" GridLines="None">
<AlternatingRowStyle BackColor="White" />
<CommandRowStyle BackColor="#FFFFC0" Font-Bold="True" />
<FieldHeaderStyle BackColor="#FFFF99" Font-Bold="True" />
<Fields>
<asp:BoundField DataField="StationNo" HeaderText="Station Number" ReadOnly="True"
SortExpression="StationNo" ApplyFormatInEditMode="True">
<HeaderStyle Width="150px" />
<ItemStyle HorizontalAlign="Center" Width="1200px" />
</asp:BoundField>
<asp:BoundField DataField="Station_Name" HeaderText="Station Name" SortExpression="Station_Name">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
</Fields>
<FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
</asp:DetailsView>
<asp:SqlDataSource ID="StationSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:AgainConnectionString %>"
DeleteCommand="DELETE FROM [StationInfoTable] WHERE [StationNo] = …Run Code Online (Sandbox Code Playgroud)