Ajax .NET in MasterPages

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
 
S

Steve C. Orr [MVP, MCSD]

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>

....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top