比如我现在用的是fckeditor编缉器,如果直接在页面上添加的话就是这样<FCKeditorV2:FCKeditor ID="Content" runat="server">
</FCKeditorV2:FCKeditor>
但是我现在想实现一个多版本的功能,比方说网站的语言版本是不固定的,一般像中文,英文,俄文,那页面上就不能只固定添加一个这样的编缉器了
所以我希望能在后台动态添加到页面上,例如有三种语言的话我就循环添加三个
<FCKeditorV2:FCKeditor ID="cn_Content" runat="server">
</FCKeditorV2:FCKeditor>
<FCKeditorV2:FCKeditor ID="en_Content" runat="server">
</FCKeditorV2:FCKeditor>
<FCKeditorV2:FCKeditor ID="er_Content" runat="server">
</FCKeditorV2:FCKeditor>
但是具体我又不知道怎么实现,希望大家如果做过类似功能的话能给我一个思路或者方法,谢谢了