this connector is disabled错误的解决方法
更新时间:2008年11月15日 13:22:32 作者:
打开editor/filemanager/connectors/aspx/config.ascx修改CheckAuthentication()方法,返回true
复制代码 代码如下:
private bool CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
//
// return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
//
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs in your system.
return true;
}
相关文章
动态指定任意类型的ObjectDataSource对象的查询参数
我在使用ObjectDataSource控件在ASP.NET中实现Ajax真分页 一文中详细介绍过如何使用ObjectDataSource和ListView实现数据绑定和分页功能。事实上,采用ObjectDataSource和ListView相结合,可以减少我们很多的开发任务。2009-11-11document.getElementsByName和document.getElementById 在IE与FF中不同
今天在<asp:radiobuttonlist/>中使用教本的的时候才注意到原来 document.getElementsByName 、document.getElementById 在IE与FF中有着不同实现。2008-12-12asp.net+ajax+sqlserver自动补全功能实现解析
这篇文章主要介绍了asp.net + ajax + sqlserver 自动补全功能,需要的朋友可以参考下2014-03-03
最新评论