码迷,mamicode.com
首页 > Web开发 > 详细

uploadify Cookie 验证登入上传问题

时间:2015-02-15 12:08:32      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

上传文件时必须验证是否已登入。

当用FormsAuthentication做登入,使用FormsAuthentication.FormsCookieName进行验证是否已登入即可。

<script type="text/javascript">
var auth = "@(Request.Cookies[FormsAuthentication.FormsCookieName]==null ? string.Empty :
Request.Cookies[FormsAuthentication.FormsCookieName].Value)"; $(window).load( function () { $("#fileuploader").fileUpload({ ‘uploader‘: ‘/Scripts/uploader.swf‘, ‘cancelImg‘: ‘/Images/cancel.png‘, ‘buttonText‘: ‘Select Image‘, ‘script‘: ‘Home/Upload‘, ‘folder‘: ‘/uploads‘, ‘fileDesc‘: ‘Image Files‘, ‘fileExt‘: ‘*.jpg;*.jpeg;*.gif;*.png‘, ‘multi‘: true, ‘auto‘: true, scriptData: { token: auth } }); } ); </script> <div id="fileuploader"></div>
        [HttpPost]
        public string Upload(HttpPostedFileBase fileData, string token)
        {
            if (string.IsNullOrEmpty(token))
            {
                return "noLogin";
            }
            FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(token);
            if (ticket != null)
            {
                var identity = new FormsIdentity(ticket);
                if (identity.IsAuthenticated)
                {
                    var fileName = this.Server.MapPath("~/uploads/" + System.IO.Path.GetFileName(fileData.FileName));
                    fileData.SaveAs(fileName);
                }
            }
            return "ok";
        }

 

uploadify Cookie 验证登入上传问题

标签:

原文地址:http://www.cnblogs.com/ly7454/p/4292628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!