zoukankan      html  css  js  c++  java
  • asp.net中使用ckfinder2选择图片并返回图片文件的路径的代码

    在ASP.NET页面中加入以下代码:

    <div>
    <script type="text/javascript" src="../ckfinder/ckfinder.js"></script>
    <script type="text/javascript">
        function BrowseServer(inputId) {
            var finder = new CKFinder();
            finder.basePath = '../ckfinder/'; //导入CKFinder的路径
            finder.selectActionFunction = SetFileField; //设置文件被选中时的函数
            finder.selectActionData = inputId; //接收地址的input ID
            finder.popup();
        }
        //文件选中时执行
        function SetFileField(fileUrl, data) {
            document.getElementById(data["selectActionData"]).value = fileUrl;
        }
    </script>
    <p>
    <asp:TextBox ID="txtImgPath" runat="server" Height="17px" Width="429px"></asp:TextBox>
    <input type="button" value=" 浏 览 " onclick="BrowseServer('<%=txtImgPath.ClientID %>');" />
    </p>
    </div>

  • 相关阅读:
    面试题库
    集合的交、查、并
    mysql_server安装
    maven构建jar包
    Centos7下 升级php5.4到7.1 yum安装
    redis
    常见shell用法
    Mac下的LDAP客户端 ApacheDirectoryStudio
    redis弱密码漏洞利用
    Freeradius+Cisco2500AC+OpenLdap认证
  • 原文地址:https://www.cnblogs.com/ahuang1118/p/2149031.html
Copyright © 2011-2022 走看看