xudianchiwang

所属分类:WEB开发
开发工具:Java
文件大小:5207KB
下载次数:1
上传日期:2016-08-10 13:56:56
上 传 者大庆
说明:  这套源码的产品列表页、首页等调用到图片的地方,都是自动对所调用图片进行缩放的,所以使用源码的朋友,在后台更新内容和上传产品的时候,不用刻意去修改图片,不同的尺寸网站程序在调用的时候都会自动缩放到合适的比例,所以不用担心前台排版错乱的问题,源码完整安全无BUG,大家可以通过在线后门扫描工具扫描一下,绝对没有任何后门程序,非常安全。
(This source is the product list page, home page, such as calls to the picture of a place, it is to automatically scale the picture is called the, so use the source code of the friends, update in the background content and upload products, do not bother to modify the image, different size website program at the time of the call will automatically zoom in to the appropriate proportion, so you don t have to worry about front layout disorder and complete source code security bug free, you can through online portal scan tool to scan, there is absolutely no any backdoor, very safe.This source is the product list page, home page, such as calls to the picture of a place, it is to automatically scale the picture is called the, so use the source code of the friends, update in the background content and upload products, do not bother to modify the image, different size website program at the time of the call will automatically zoom in to the appropriate proportion, so you don t have to worry abou)

文件列表:
about.html (13583, 2016-06-08)
contact.html (11268, 2016-06-08)
favicon.ico (4286, 2013-08-31)
index.asp (792, 2014-09-03)
index.html (16019, 2016-06-10)
pinpai.html (16214, 2016-06-08)
search.asp (983, 2014-08-29)
taglist.asp (1152, 2014-08-29)
tags.asp (867, 2014-08-29)
wangluo.html (11979, 2016-06-08)
账号密码.txt (329, 2016-06-08)
__ErrFiles__ (0, 2016-06-08)
__ErrFiles__\404.html (1794, 2016-01-13)
__ErrFiles__\500.html (1798, 2015-08-02)
about (0, 2016-06-08)
about\index.asp (627, 2014-08-29)
admin (0, 2016-06-08)
admin\css (0, 2016-06-08)
admin\css\all.css (1884, 2014-09-03)
admin\css\base.css (2577, 2013-08-12)
admin\css\close.png (41907, 2013-08-07)
admin\css\close0.png (623, 2013-08-11)
admin\css\css_body.css (6839, 2013-08-09)
admin\css\css_menu.css (2306, 2015-07-12)
admin\css\css_menu_user.css (3065, 2014-07-22)
admin\css\css_top.css (4870, 2014-11-30)
admin\css\css_top_user.css (4869, 2014-11-30)
admin\css\loading.gif (2767, 2013-08-13)
admin\css\tinyTips.css (772, 2015-07-12)
admin\css\titleBG.png (150, 2013-08-06)
admin\css\titleBG0.png (159, 2013-08-07)
admin\css\titleBG1.png (457, 2013-08-12)
admin\css\wbox-min.css (1233, 2013-08-08)
admin\css\wbox.css (1603, 2013-08-06)
admin\css\wbox.gif (49, 2013-08-07)
admin\css\wbox.png (121, 2013-08-07)
admin\css\wbox2.gif (49, 2013-08-11)
admin\editor (0, 2016-06-08)
admin\editor\upload.asp (24277, 2014-09-03)
admin\editPass.asp (2163, 2014-08-29)
... ...

# UEditor ASP 支持说明 应广大用户要求,UEditor 团队在原本支持的 PHP、Java 和 .Net 的后台的基础上,推出了 ASP 后台的支持。 ## 支持版本 ## 支持 UEditor 1.2.6+ 的版本 ## 支持功能 ## 支持所有其他后台已支持的功能,包括: 1. 图片上传 2. 远程图片转存 3. 图片管理 4. 涂鸦上传(包括背景) 5. Word 图片转存 6. 截图上传 7. 文件上传 ## 部署指南 ## Classic ASP 一般在 IIS 上运行。其它 ASP 服务器不介绍部署方式,请自行研究。 ### 配置 ### 对于 v1.4.0 之前的版本,需要修改 `ueditor.config.js`。最简单的方法,就是把文件中的 php 都替换成 asp。要修改的配置包括: ```javascript { imageUrl:URL+"asp/imageUp.asp" ,imagePath:URL + "asp/" ,scrawlUrl:URL+"asp/scrawlUp.asp" ,scrawlPath:URL+"asp/" ,fileUrl:URL+"asp/fileUp.asp" ,filePath:URL + "asp/" ,catcherUrl:URL +"asp/getRemoteImage.asp" ,catcherPath:URL + "asp/" ,imageManagerUrl:URL + "asp/imageManager.asp" ,imageManagerPath:URL + "asp/" ,snapscreenServerUrl: URL +"asp/imageUp.asp" ,snapscreenPath: URL + "asp/" ,wordImageUrl:URL + "asp/imageUp.asp" ,wordImagePath:URL + "asp/" ,getMovieUrl:URL+"asp/getMovie.asp" } ``` UEditor v1.4.0 后进行了后端的统一配置,后端相关的配置文件是 `config.json`,在具体的后台目录下。需要注意以下两个类型的配置: ```javascript { "{tpl}UrlPrefix": "/ueditor/asp/", "{tpl}PathFormat": "upload/{tpl}/{yyyy}{mm}{dd}/{time}{rand:6}" } ``` `{tpl}PathFormat` 是资源(图片、涂鸦、文件等)保存的位置以及文件名格式,这个路径在 ASP 中是相对运行目录的。 `{tpl}UrlPrefix` 是资源定位的基本路径,在 ASP 后台中一般设置成 ASP 的目录。 比如,IIS 中运行的 UEditor ASP 的目录为 C:\iis_pub\wwwroot\mysite\ueditor\asp,而网站的访问地址为 http://localhost/mysite/,那么你可以这样修改这两类配置项: ```javascript { "{tpl}UrlPrefix": "/mysite/ueditor/asp/", "{tpl}PathFormat": "upload/{tpl}/{yyyy}{mm}{dd}/{time}{rand:6}" } ``` ### 在 IIS 6.X 中部署 IIS 的安装在这里不介绍,请自行查阅相关资料。 1. 启用 ASP 拓展 * 打开 IIS 管理器 * 展开本地计算机 * 选中 Web 服务拓展 * 允许 Active Server Pages 拓展 2. 配置网站脚本执行权限(如果使用虚拟路径,请跳过本步骤) * 在网站上右击,点属性 * 切换到主目录选项卡,勾选*读取*、*写入*两个权限,并且*执行权限*选择*纯脚本* * 点确定 3. 使用虚拟路径 * 在网站上右击,点*新建* - *虚拟路径* * 按照向导填写名称和路径 * 勾选*读取*、*执行脚本*和*写入*三个权限 * 完成虚拟目录的创建 4. 配置脚本执行身份 * 在网站或虚拟路径上右击,点属性 * 选择*目录安全性*选项卡 * 在*身份验证和访问控制*中点击*编辑* * 勾选*启用匿名访问*,点击用户名后面的*浏览* * 输入*administrator*点确定 * 输入*administrator*账号的密码 * 点击确定,再确认一次密码 5. 设置最大 HTTP 请求大小限制 * 找到位于 C:\Windows\System32\Inetsrv 中的 metabase.XML,打开,查找ASPMaxRequestEntityAllowed,修改为需要的值(如10240000 即 10M) > ASP 文件中也有上传文件大小的限制,不过先验证的限制是 IIS 中设置的,所以如果 IIS 中设置最大 256K,那么就算 ASP 中设置了最大 10M,那么超过 256K 的文件也无法上传,而且 ASP 没法给出错误信息。 ### 在 IIS 7.X 中部署 IIS7 默认不安装 ASP,需要手动添加进去。添加方法请读者自行查阅。 1. 配置脚本执行身份 * 选中网站或者应用程序 * 双击 IIS 中的*身份验证* * 双击匿名身份验证 * 填写*administrator*的用户名和密码,确定 2. 设置最大 HTTP 请求大小限制 * 打开 IIS 控制台 * 双击 ASP,展开*限制属性*,修改*醉倒请求实体主体限制*为需要的值(如10240000 即 10M) > ASP 文件中也有上传文件大小的限制,不过先验证的限制是 IIS 中设置的,所以如果 IIS 中设置最大 256K,那么就算 ASP 中设置了最大 10M,那么超过 256K 的文件也无法上传,而且 ASP 没法给出错误信息。

近期下载者

相关文件


收藏者