• 大小: 3.07MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-28
  • 语言: 其他
  • 标签: ueditor  

资源简介

最新版本百度编辑器 ueditor-1.4.3.3 utf8-net,完整demo及源码

资源截图

代码片段和文件信息

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.IO;
using System.Linq;
using System.Web;

/// 
/// Config 的摘要说明
/// 

public static class Config
{
    private static bool noCache = true;
    private static Jobject BuildItems()
    {
        var json = File.ReadAllText(HttpContext.Current.Server.MapPath(“config.json“));
        return Jobject.Parse(json);
    }

    public static Jobject Items
    {
        get
        {
            if (noCache || _Items == null)
            {
                _Items = BuildItems();
            }
            return _Items;
        }
    }
    private static Jobject _Items;


    public static T GetValue(string key)
    {
        return Items[key].Value();
    }

    public static String[] GetStringList(string key)
    {
        return Items[key].Select(x => x.Value()).ToArray();
    }

    public static String GetString(string key)
    {
        return GetValue(key);
    }

    public static int GetInt(string key)
    {
        return GetValue(key);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1627  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\anchor\anchor.html

     文件      15063  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\attachment.css

     文件       2370  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\attachment.html

     文件      30055  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\attachment.js

     文件        923  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_chm.gif

     文件        841  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_default.png

     文件       1012  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_doc.gif

     文件        949  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_exe.gif

     文件        950  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_jpg.gif

     文件        986  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_mp3.gif

     文件       1001  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_mv.gif

     文件        996  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_pdf.gif

     文件       1001  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_ppt.gif

     文件       1009  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_psd.gif

     文件       1007  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_rar.gif

     文件        970  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_txt.gif

     文件       1005  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\fileTypeImages\icon_xls.gif

     文件       1051  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\alignicon.gif

     文件       3714  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\alignicon.png

     文件       2810  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\bg.png

     文件      20097  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\file-icons.gif

     文件      44070  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\file-icons.png

     文件        453  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\icons.gif

     文件       2678  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\icons.png

     文件       1672  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\image.png

     文件       1269  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\progress.png

     文件        445  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\success.gif

     文件       1621  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\attachment\images\success.png

     文件       2491  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\background\background.css

     文件       2954  2018-09-04 18:24  ueditor-1.4.3.3 utf8-net\dialogs\background\background.html

............此处省略317个文件信息

评论

共有 条评论