Ajax .NET in MasterPages

  • Thread starter Thread starter K
  • Start date Start date
K

K

Hi,
I have a web applicatian that used the Atlas Framework and was
working fine (regardless of the bugs), but when I migrated to the Ajax
..NET Beta 1 and made the neccessary changes as described in the
migration giude, I can no longer find the Ajax controls in the page.
Typing "<asp:U..." doesn't show the update panel for example, and VS
2005 underlines all the Ajax controls in red. Yet the page runs totally
normal. This only happens in pages that reference MasterPages.

Any clue?

Thanx,
K
 
Ajax beta 2 is out now. I suggest you upgrade. http://Ajax.asp.net
Then make sure the AJAX control definitions are in your web.config.

<system.web>

<pages>

<controls>

<add tagPrefix="asp" namespace="Microsoft.Web.UI"
assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>

<add tagPrefix="asp" namespace="Microsoft.Web.UI.Controls"
assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>

</controls>

....
 
Back
Top