Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7667383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:05:19+00:00 2026-05-31T15:05:19+00:00

i have a WebForms application, and am trying to use the uploadify jquery library.

  • 0

i have a WebForms application, and am trying to use the uploadify jquery library.

It works fine in IE8, but doesn’t in FF7, FF10, or FF3. The break point i put in Upload.ashx is not hit.

I did quite the search and found that it has to does with cookies, something like ASPXAUTH. I tried adding it to ‘scriptData’, but no success.

Any ideas?

Page code:

<script type="text/javascript">

    $(document).ready(function () {


        alert($(".hidcook").val());
        // <![CDATA[
        var id = "55";
        var theString = "asdf";

        $('#fileInput').uploadify({
            'uploader': 'uploadify/uploadify.swf',
            'script': 'Upload.ashx',


            'scriptData': { 'id': id, 'foo': theString },
            'cancelImg': 'uploadify/cancel.png',
            'auto': true,
            'multi': true,
            'fileDesc': 'All Files',

            'queueSizeLimit': 90,

            'buttonText': 'Importar Planilha',
            'folder': '/uploads',
            'onAllComplete': function (event, queueID, fileObj, response, data) {
            }
        });
    });
   // ]]></script>

Upload.ashx:

 public class Upload : IHttpHandler, IRequiresSessionState{

        public void ProcessRequest(HttpContext context)
        {
            try
            {
                HttpPostedFile file = context.Request.Files["Filedata"]; //breakpoint

                int id = (Int32.Parse(context.Request["id"]));
                string foo = context.Request["foo"];
                file.SaveAs("C:\\" + id.ToString() + foo + file.FileName);

                context.Response.Write("1");
            }
            catch (Exception ex)
            {
                context.Response.Write("0");
            }
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:05:21+00:00Added an answer on May 31, 2026 at 3:05 pm

    If your website content is not public, add to web.config authorization access to the Handler.

    <location path="Upload.ashx">
       <system.web>
         <authorization>
           <allow users="*"/>
         </authorization>
       </system.web>
     </location>
    

    There are some differences in how browsers implement file upload through flash component.
    IE uses the same session. FF opens a new connection, so the server sees an un-authenticaded user that is trying to access a protected page.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET webforms application and trying to implement jQuery autocomplate on a
I have a mixed WebForms/MVC application I'm trying to deploy to our staging environment,
I have an ASP.NET WebForms application that I'm trying to switch to MVC for
I have an ASP.NET webforms application with a Menu control. How does one hide
I'm working through a previous webforms application to convert it to MVC and have
Good Morning, I'm working on an ASP.NET 3.5 webforms application and have written the
In my Webforms 3.5 application, I have a GridView of users that displays the
Retrofitting ASP.NET WebForms themes to an old application I have a need to theme
I'm just wondering, if I have an ASP.net Web Application, either WebForms or MVC,
We have a .net 3.5 application (MVC and WebForms mixed) that was hosted on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.