我正在使用CKFinder 2.5.0.1 for ASP.NET。一切正常,但最重要的是选择文件。当我们单击选择文件命令或双击时,没有任何反应。 CKFinder photo
<asp:Button runat="server" ID="btnQRCode" Text="Browse Server" OnClientClick=" BrowseServer('Images:/', '<% =txtQRCode.ClientID %>'); "/>
<asp:TextBox ID="txtQRCode" runat="server" Width="1px" Style="display: none;"></asp:TextBox>
和Js:
function BrowseServer(startupPath, functionData) {
var finder = new CKFinder();
finder.basePath = '../';
finder.startupPath = startupPath;
finder.selectActionFunction = SetFileField;
finder.selectActionData = functionData;
finder.popup();
}
function SetFileField(fileUrl, data) {
document.getElementById(data["selectActionData"]).value = fileUrl;
}
我正在使用.NET 4.0。上传文件没问题,但是我们无法选择文件来设置文本框的文件路径。