摘要: The FileReader InterfaceThe FileReader interface provides a number of methods that can be used to read either File or Blob objects. These methods are all asynchronous which means that your program will not stall whilst a file is being read. This is particularly useful when dealing with large files.T 阅读全文
posted @ 2014-03-18 18:56 happyu0223 阅读(854) 评论(0) 推荐(0) 编辑
摘要: issue:我使用的环境是Vs2012 , 创建了MVC4的工程,然后在工程里面Webconfig, 添加了访问限制 设置所有访问都拒绝匿名访问,只有授权用户才能访问,非授权的访问会跳转到登录页面 ~/Account/Login然后问题是,我想加一个公共的Controler,是给非授权的用户访问,我给那个Controler加上[AllowAnonymous] 属性,允许匿名,但是很奇怪,所有访问这个匿名的Controler还是会跳转到Login,除非你登录了授权,才可以打开这个匿名的控制器,这个[AllowAnonymous]完全不起作用。soluti... 阅读全文
posted @ 2014-03-18 11:13 happyu0223 阅读(323) 评论(0) 推荐(0) 编辑