Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • TaoistTotty 246 posts 314 karma points
    Feb 24, 2014 @ 12:54
    TaoistTotty
    0

    Multiple File Upload not Working

    I am trying to upload a large  number of files to V7.

    I can select the files and when I click open they flash onto the screen for a second and then disappear.

    Does anyone have a solution to this issue?

    Thanks

    TT

  • TaoistTotty 246 posts 314 karma points
    Feb 24, 2014 @ 15:51
    TaoistTotty
    0

    The about issue was found when running the site from Visual Studio 2013. If I frun the site from WebMatrix I do not see the issue

  • Robert Mulder 79 posts 272 karma points c-trib
    Feb 26, 2014 @ 11:03
    Robert Mulder
    100

    I had an issue with uploading files and images as well. For me it turned out the problem had to do with the binding redirect of System.Net.Http. In the Web.config it says something like this

      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
      </dependentAssembly>
    

    For me the upload was fixed when I changed it to

      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="4.0.0.0" />
      </dependentAssembly>
    

    (notice the version changed to 4.0.0.0)

    Not sure if it's the same issue for you though.

  • TaoistTotty 246 posts 314 karma points
    Feb 26, 2014 @ 11:25
    TaoistTotty
    0

    Hi Robert

    Thanks for this, and it has solved the issue I was seeing.

    Many thanks.

    TT

  • Robert Mulder 79 posts 272 karma points c-trib
    Feb 26, 2014 @ 11:28
    Robert Mulder
    0

    Great to hear it. Note however that if you change this and run into compiler errors it's probably because your project is still targeted against .NET 4.0

    Change this to .NET 4.5 (or 4.5.1 if you have it installed) and the compiler errors go away too.

  • Barbacan 29 posts 79 karma points
    Jul 23, 2014 @ 18:11
    Barbacan
    0

    Is there a version of this component for the 6.2.1 version?

Please Sign in or register to post replies

Write your reply to:

Draft