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

Update within an Update Panel does not work (VS 2008 and .NET 3.5)

Asked by Stefan Lederer
15 years ago.

Hello,

I've converted our Web Project from a Visual Studio 2005 into a Visual Studio 2008 Project. Everything works fine but when I update the schedular within an update panel there only is the text "update" in the schedular. The first time i open the page everything works fine, but everytime i do an update with the update panel i get only this "update"-text. But this works with the Visual Studio 2005 and the .NET 2.0 Framework.

Could you help me?

Greetings

Comment posted by Stefan Lederer
15 years ago.

Hello,

I've found this entry in you forum, but it doesn't work with my application: http://forums.daypilot.org/Topic.aspx/244/net_35_update_panel

Maybe you could help me.

Greetings

Stefan

Comment posted by Dan Letecky
15 years ago.

It's supposed to work with .NET 3.5. Let me check it, please.

Comment posted by Dan Letecky
15 years ago.

I confirm the bug.

However, after adding the <assemblyBinding> section to the web.config it was working fine. (Actually that section was added automatically during conversion to VS2008 project).

<configuration>
	<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>
</configuration>

Comment posted by Dan Letecky
15 years ago.

With the help of the following post, the issue was finally resolved:

http://www.codeplex.com/googlemap/WorkItem/View.aspx?WorkItemId=3582

The fix will be included in the next release (5.3).

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.