Want to set the upload folder for pdf upload to a certain folder on the website..
Is there a way to do that inline at <CE: Editor ...>?
What is the syntax for setting the FilesGalleryPath inside the following <CE:Editor> component?
Is there another way to get this effect?
Thanks for any help.
<
asp:TemplateField HeaderText = "PDF file">
<ItemTemplate>
<asp:Label ID="PDFfilenameLabel" runat="server" Text='<%# Eval("PDFfilename") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<CE:Editor id="PDFfilename" EditorWysiwygModeCss="~/StyleSheets/example.css" ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/Adobe.config"
AutoConfigure="None" Height=150 Width=300 ShowBottomBar="false" Text = '<%# Bind("PDFfilename") %>' runat = "Server" ></CE:Editor>
</EditItemTemplate>
</asp:TemplateField>