search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

.NET 3.5 Update Panel

Asked by Rohland
16 years ago.
Hi

I recently upgraded a project to .NET 3.5. Daypilot controls inside Updatepanels do not work anymore. Is there a fix for this?

Regards
Rohland
Comment posted by Dan Letecky
16 years ago.
Not yet, I will be working on it right after 4.3 release.
Comment posted by Jan Marten
16 years ago.
Hi Dan,

Could you provide a status update on this issue? I am unable to find it in the changelogs nor in the roadmap and I am experiencing the same problem.

Kind regards,

Jan Marten
Comment posted by Dan Letecky
16 years ago.
I was trying to reproduce it by modifying the SQL demo but it seems to work fine with .NET Framework 3.5.

Could you please post some details about what's not working? Reproduction steps would be very helpful as well.
Comment posted by Jan Marten
16 years ago.
Hi Dan,

The problem occured when I migrated from VS2005 to VS2008 and changing the UpdatePanel from 1.0 to 3.5. Both scheduler and calendar control were not updated with new data after a postback.

I will have a look at the SQL-demo (doesn't work atm because I am not running sqlexpress but sql-standard at my computer but that should not be the real issue here).

If the problem persists I will place another message here.

Kind regards,
Jan Marten
Comment posted by Jan Marten
16 years ago.
Well, it seems that it kinda depends on the Web.Config settings. I copied the runtime settings from de SqlDemo to my project and now it works again:

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
Comment posted by Dan Letecky
16 years ago.
Thanks for posting the results.

I will of course want to get rid of that dependency and make it compatible with .NET Framework 3.5 without any web.config tweaking.
Comment posted by Dan Letecky
15 years ago.
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.