So far in moving from RC1 to RTM only thing i have had to change is the markup for an autocompleteextender, everything else worked on first run (and that includes that I am running all DLLs from the application /bin/ directory, but with trust set to "full")
Download AJAX RTM
"If you make it idiot proof, they'll build a better idiot"
I have a page with a modalpopupextender and a few popupcontrolextenders that work on it. One imparticular is the new autocompleteextender. I built the web service, hooked it all up and now I get this javascript error: Sys.InvalidOperationException: Two
components with the same ID 'ctl0_cplMain_aceNamesPopupBehavior' can't be added to the application. My html looks like this:
MorningZ
Star
8849 Points
1822 Posts
RTM released... go and get it :-)
Jan 23, 2007 05:19 PM|LINK
Core DLL's
http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&DisplayLang=en
January Futures CTP:
http://www.microsoft.com/downloads/details.aspx?FamilyID=4cb52ea3-9548-4064-8137-09b96af97617&DisplayLang=en
Toolkit update (few new controls + AutoCompleteExtender lives here now):
http://www.codeplex.com/AtlasControlToolkit/Release/ProjectReleases.aspx
So far in moving from RC1 to RTM only thing i have had to change is the markup for an autocompleteextender, everything else worked on first run (and that includes that I am running all DLLs from the application /bin/ directory, but with trust set to "full")
Download AJAX RTM
Garbin
Contributor
7428 Points
1507 Posts
ASPInsiders
Re: RTM released... go and get it :-)
Jan 23, 2007 05:34 PM|LINK
Hi,
thanks, got it :)
XIII
All-Star
182709 Points
23464 Posts
ASPInsiders
Moderator
MVP
Re: RTM released... go and get it :-)
Jan 23, 2007 05:55 PM|LINK
Yohoho and a bottle of rum would Jack Sparrow sing. Go get the gold maties!
There's also a new release of the futures CTP (january).
Grz, Kris.
Interested in Azure, ASP.NET (MVC), jQuery, WCF, EF, MS SQL, ...
Keep the forums clean: report to the moderation team!
atmonline
Member
60 Points
32 Posts
Re: RTM released... go and get it :-)
Jan 23, 2007 07:26 PM|LINK
Congratulations AJAX Team.
Asp.Net got Wings...............
achu
buckt
Member
18 Points
9 Posts
Re: RTM released... go and get it :-)
Jan 23, 2007 09:10 PM|LINK
Can someone help me.
I have a page with a modalpopupextender and a few popupcontrolextenders that work on it. One imparticular is the new autocompleteextender. I built the web service, hooked it all up and now I get this javascript error: Sys.InvalidOperationException: Two components with the same ID 'ctl0_cplMain_aceNamesPopupBehavior' can't be added to the application. My html looks like this:
<ajaxE:UpdatePanel ID="aupNew813" runat="server" updateMode="always" ChildrenAsTriggers="true">
<ContentTemplate>
<asp:Button ID="btnAjaxFakeNew813" runat="server" style="display:none;" />
<ajax:ModalPopupExtender
ID="mpeNew813"
runat="server"
TargetControlID="btnAjaxFakeNew813"
BackgroundCssClass="modalBackground"
PopupControlID="pnlNew813"
CancelControlID="lbCloseAddNew813" >
</ajax:ModalPopupExtender>
<asp:Panel ID="pnlNew813" runat="Server" CssClass="PopupPaneNew813" style="display:none;" >
<asp:textbox id="txtName" runat="server" />
<ajax:AutoCompleteExtender ID="aceNames" runat="server" TargetControlID="txtName" ServiceMethod="getNames" ServicePath="webMethods.asmx" MinimumPrefixLength="1" CompletionInterval="1000" EnableCaching="false" CompletionSetCount="12"></ajax:AutoCompleteExtender>
</asp:Panel>
</ContentTemplate>
</ajaxE:UpdatePanel>