ASP.NET c # Использование плагина Uploadify Jquery Get Http Error 302 - PullRequest
0 голосов
/ 06 апреля 2011

Я использую плагин Uploadify в своей веб-форме и получаю сообщение об ошибке Http 302. Я не знаю, как это происходит и как это исправить, кто-нибудь, помогите мне исправить это. заранее спасибо. Вот мой код JavaScript:

<link href="jscript/uploadify/uploadify.css" rel="stylesheet" type="text/css" />
<script src="jscript/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="jscript/uploadify/swfobject.js" type="text/javascript"></script>
<script src="jscript/uploadify/jquery.uploadify.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function () {
        $('#custom_file_upload').uploadify({
            'uploader': 'jscript/uploadify/uploadify.swf',
            'script': 'admin_ServicesPhotosManager.aspx',
            'cancelImg': 'jscript/uploadify/cancel.png',
            'folder': 'Images/Uploads',
            'fileExt': '*.jpg;*.gif;*.png',
            'fileDesc': 'Image Files (.JPG, .GIF, .PNG)',
            'multi': true,
            'queueSizeLimit': 5,
            'queueID': 'custom-queue',
            'onSelectOnce': function (event, data) {
                $('#status-message').text(data.filesSelected + ' files have been added to the queue.');
            },
            'onAllComplete': function (event, data) {
                alert(data.filesUploaded + ' files uploaded successfully !');
                window.location = 'admin_ServicesPhotosManager.aspx';
            },
            'onError': function (event, ID, fileObj, errorObj) {
                alert(errorObj.type + ' Error: ' + errorObj.info + " file : " + fileObj.type);
            }
        });
    });
</script>

и мой код admin_servicephotosmanager.aspx:

 <div id="status-message">
</div>
<div id="custom-queue">
</div>
<input type="file" id="custom_file_upload" name="file_upload" />
<a href="javascript:$('#custom_file_upload').uploadifyUpload();" class="file-upload">
</a>

наконец-то мой код admin_servicephotosmanager.aspx.cs:

protected void Page_Load(object sender, EventArgs e)
{
    if (Request.Files["Filedata"] != null)
    {
        HttpPostedFile uploads = Request.Files["Filedata"];
        MessageBox.Instance.DisplayMessageAndRefresh(uploads.ContentLength.ToString(), false);
    }
}

Обновление my web.config:

<location path="~/admin_ServicesPhotosManager.aspx">
<system.web>
  <authorization>
    <allow users="*"/>
  </authorization>
  <httpRuntime executionTimeout="1800"
               maxRequestLength="1048576"
               useFullyQualifiedRedirectUrl="false"/>
</system.web>

<system.web>
<httpRuntime
   executionTimeout="110"
   maxRequestLength="102400"
   requestLengthDiskThreshold="80"
   useFullyQualifiedRedirectUrl="false"
   minFreeThreads="8"
   minLocalRequestFreeThreads="4"
   appRequestQueueLimit="5000"
   enableKernelOutputCache="true"
   enableVersionHeader="true"
   requireRootedSaveAsPath="true"
   enable="true"
   shutdownTimeout="90"
   delayNotificationTimeout="5"
   waitChangeNotification="0"
   maxWaitChangeNotification="0"
   enableHeaderChecking="true"
   sendCacheControlHeader="true"
   apartmentThreading="false" /></system.web>

кто-нибудь, помогите мне исправить ошибку http 302. заранее спасибо.

Ответы [ 2 ]

0 голосов
/ 30 июня 2011

Удалить

 <authorization>
    <allow users="*"/>
  </authorization>

Из вашего web.config это будет работать.

0 голосов
/ 06 апреля 2011

Возможно, запрос был заблокирован, проверьте, есть ли у вас проблемы с безопасностью.

...