Ajax Uploader for Asp.Net MVC 2.0?

Last post 07-23-2010, 9:46 PM by Eric. 3 replies.
Sort Posts: Previous Next
  •  07-22-2010, 12:11 PM 62666

    Ajax Uploader for Asp.Net MVC 2.0?

    Hi,
     
    Does Ajax Uploader supports Asp.Net MVC 2.0?
     
    Regards,
    Amitabh 
    Filed under:
  •  07-23-2010, 1:02 AM 62669 in reply to 62666

    Re: Ajax Uploader for Asp.Net MVC 2.0?

    Amitabh,
     
    Yes, please check the following examples in the download package:
     
    MVC-CSharp
    MVC-VB

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  07-23-2010, 4:39 AM 62672 in reply to 62669

    Re: Ajax Uploader for Asp.Net MVC 2.0?

    Hi Adam,
     
    I am tried that but it is not even compiling on Visual Studio 2010 with MVC 2.0. The error I got was
     
    Could not load file or assembly 'System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. C:\Users\Amit\Downloads\Ajax-Uploader\MVC-CSharp\Web.config 32
     
    Regards,
    Amitabh 
    Filed under:
  •  07-23-2010, 9:46 PM 62685 in reply to 62672

    Re: Ajax Uploader for Asp.Net MVC 2.0?

    This example project is using MVC1.0, you need convert MVC1.0 to MVC2.0, please follow steps:
    1. Open web.config
    2. replace all "System.Web.Mvc, Version=1.0.0.0" with "System.Web.Mvc, Version=2.0.0.0"
    3. Add the following lines within "Configuration" section:
         <runtime>
           <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
             <dependentAssembly>
               <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
               <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
             </dependentAssembly>
           </assemblyBinding>
       </runtime>
    4. Save web.config and run it again.
    Regards,
    Eric
     
     
View as RSS news feed in XML