ASP.NET Ajax Library (RETIRED)http://forums.asp.net/1214.aspx/1?ASP+NET+Ajax+Library+RETIRED+This forum is retired.Tue, 09 Aug 2011 14:27:24 -0400urn:uuid:00000000-0000-0000-0000-000000001214urn:uuid:00000000-0000-0000-0000-000003809731http://forums.asp.net/p/1552462/3809731.aspx/1?Unable+to+get+TabPanel+demo+to+work+with+40412+ReleaseUnable to get TabPanel demo to work with 40412 Release <p>Hi, I am trying to use the TabContainer/TabPanel with the latest version of the Ajax Library. I got the demo code from <a href="http://www.asp.net/ajaxlibrary/Tabs-Control.ashx">http://www.asp.net/ajaxlibrary/Tabs-Control.ashx</a>&nbsp;and the client side example works great. However when I switch the links to use the 40412 release the Javascript blows up and the tabs don't work. Does anyone know how to correct this and if there is an updated demo anywhere?</p> <p>Below is my modifed code:</p> <pre class="prettyprint">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt; &lt;head runat=&quot;server&quot;&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt; &lt;link rel=&quot;Stylesheet&quot; href=&quot;http://ajax.microsoft.com/ajax/act/40412/extended/tabs/tabs.css&quot; /&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/act/40412/Start.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/act/40412/extended/ExtendedControls.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; Sys.require(Sys.components.tabContainer, function() { var container = Sys.create.tabContainer(&quot;#tabcontainer&quot;, 0); $(&quot;#tab1_body&quot;).tabPanel(container, &quot;#tab1&quot;); $(&quot;#tab2_body&quot;).tabPanel(container, &quot;#tab2&quot;); $(&quot;#tab3_body&quot;).tabPanel(container, &quot;#tab3&quot;); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div&gt; &lt;form id=&quot;form1&quot; action=&quot;/&quot;&gt; &lt;div id=&quot;tabcontainer&quot; class=&quot;ajax__tab_xp&quot; style=&quot;width: 402px;&quot;&gt; &lt;div id=&quot;tabcontainer_header&quot;&gt; &lt;div id=&quot;tab1&quot;&gt;Signature and Bio&lt;/div&gt; &lt;div id=&quot;tab2&quot;&gt;Email&lt;/div&gt; &lt;div id=&quot;tab3&quot;&gt;Controls&lt;/div&gt; &lt;/div&gt; &lt;div id=&quot;tabcontainer_body&quot; style=&quot;height: 138px;&quot;&gt; &lt;div id=&quot;tab1_body&quot;&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; Signature: &lt;/td&gt; &lt;td&gt; &lt;input name=&quot;signatureText&quot; type=&quot;text&quot; /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Bio: &lt;/td&gt; &lt;td&gt; &lt;input name=&quot;bioText&quot; type=&quot;text&quot; /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;input type=&quot;submit&quot; name=&quot;Button3&quot; value=&quot;Save&quot; /&gt; &lt;br /&gt; &lt;br /&gt; Hit Save to cause a postback from an update panel inside the tab panel.&lt;br /&gt; &lt;/div&gt; &lt;div id=&quot;tab3_body&quot; style=&quot;display: none;&quot;&gt; Email: &lt;input name=&quot;emailText&quot; type=&quot;text&quot; /&gt; &lt;br /&gt; &lt;br /&gt; &lt;input type=&quot;submit&quot; name=&quot;Button1&quot; value=&quot;Save&quot; /&gt; &lt;br /&gt; &lt;br /&gt; Hit Save to cause a full postback. &lt;/div&gt; &lt;div id=&quot;tab2_body&quot; style=&quot;display:none;&quot;&gt; &lt;div&gt; Controls authored by Toolkit User (read-only - demo purposes):&lt;/div&gt; &lt;ul&gt; &lt;li&gt;Calendar&lt;/li&gt; &lt;li&gt;MaskedEdit&lt;/li&gt; &lt;li&gt;Accordion&lt;/li&gt; &lt;li&gt;Calendar&lt;/li&gt; &lt;li&gt;Calendar&lt;/li&gt; &lt;/ul&gt; &lt;br /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p><br> &nbsp;</p> 2010-04-28T22:14:31-04:002010-04-28T22:14:31.327-04:00urn:uuid:00000000-0000-0000-0000-000003755938http://forums.asp.net/p/1541312/3755938.aspx/1?AJAX+Combobox+alignment+issueAJAX Combobox alignment issue <p>&nbsp;Hello all,</p> <p>I have a very frustrating problem with the AJAX combo box.&nbsp; I have a few controls: asp textbox, dev-express ASPxDateEdit and a AJAX Combobox arranged in an HTML table for use on a ASP content form as filters for data display.</p> <p>For some reason I cannot get the combobox to align horizontally with the other controls.&nbsp; It remains a few pixels below the other controls.&nbsp;&nbsp; Is there some CSS style I need to set to get the aligment of this control correct?</p> <p>I am using the BETA 09.11 AJAX library in Visual Studio 2008 SP 1 and the project is compiled with .NET framework 3.5 SP 1</p> <p>Many thanks</p> <p>Les</p> 2010-03-29T08:43:11-04:002010-03-29T08:43:11.697-04:00urn:uuid:00000000-0000-0000-0000-000003806087http://forums.asp.net/p/1551719/3806087.aspx/1?Sys+loader+where+in+release+versionSys.loader where in release version <p>Hi,</p> <p>I have a little bit of confiusion to do with Sys.loader. In beata version it has accessible under link http://ajax.microsoft.com/ajax/beta/0911/Start.js.</p> <p>Under asp.net ajax release link&nbsp; to cdn&nbsp; http://ajax.microsoft.com/ajax/4.0/ I couldn't find Start.js file that contain definition for Sys.loader.</p> <p>My question is the definsion of Sys.Loader was move to other file or i can assume that start.js will appear in some time and for now i should work using beata version of start.js?<br> </p> <p><br> </p> 2010-04-27T10:06:43-04:002010-04-27T10:06:43.823-04:00urn:uuid:00000000-0000-0000-0000-000003794624http://forums.asp.net/p/1549325/3794624.aspx/1?How+to+use+Ajax+DataView+with+VS+2010+RTMHow to use Ajax DataView with VS 2010 RTM <p>I put a Script Manager on my .aspx page and set AjaxFrameworkMode=&quot;Enabled&quot; EnableCdn=&quot;true&quot;.</p> <p>This creates a reference to the following scripts:</p> <p></p> &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;http://ajax.microsoft.com/ajax/4.0/1/WebForms.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;script src=&quot;http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjax.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;//&lt;![CDATA[&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;//]]&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;/script&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;script src=&quot;http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxWebForms.debug.js&lt;/div&gt; <p></p> <p>http://ajax.microsoft.com/ajax/4.0/1/WebForms.js</p> <p>http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjax.debug.js</p> <p>http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxWebForms.debug.js</p> <p></p> <p><br> </p> <p>When I try to use a DataView (via Sys.require or Sys.components.dataView) either imperitive and declaritive syntax it does not work. &nbsp;</p> <p>The only way I can get it to work is if I add a script tag in the head that points to:&nbsp;http://ajax.microsoft.com/ajax/beta/0911/Start.js</p> <p>But then it tells me that I MicrosoftAjax referenced twice...</p> <p><br> </p> <p>Is DataView not in the 4.0/1/MicrosoftAjax.js release? &nbsp;Can I not use 4.0 ajax controls and the DataView on the same page?</p> <p><br> </p> <p>Thanks for assisting, I've done about two days of searching and all the examples seem to point to VS 2010 beta releases and the beta CDN but I have not been able to find any examples using the RTM sdks.</p> <p><br> </p> <p></p> 2010-04-20T15:33:47-04:002010-04-20T15:33:47.943-04:00urn:uuid:00000000-0000-0000-0000-000003819711http://forums.asp.net/p/1554676/3819711.aspx/1?Sys+setCommand+what+happend+in+release+version+Sys.setCommand() what happend in release version? <p>Hi,</p> <p>after&nbsp; changing&nbsp; start.js version (from http://ajax.microsoft.com/ajax/beta/0911/Start.debug.js to http://ajax.microsoft.com/ajax/act/40412/start.js) i have got this exception.</p> <p>Is it mean that in release version setCommand() function is define in different way?. I should mention taht i use this function under render event DataView component.<br> </p> <p>Waiting for yours help.<br> </p> 2010-05-05T13:08:17-04:002010-05-05T13:08:17.447-04:00urn:uuid:00000000-0000-0000-0000-000003811005http://forums.asp.net/p/1552718/3811005.aspx/1?ExtendersExtenders <p>I have scoured the net looking for how this is supposed to work. &nbsp;I can not get the extenders to &quot;pop-up&quot; for widgets like text boxes.</p> <p>I'm developing an ASP.NET web app using VS2008 Team System with SP1. &nbsp;The project is using .NET 3.5 and I have downloaded the most recent Toolkit library, 40412 and the 3.5 binaries. &nbsp;Using the video and this <a href="http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-47-cs .aspx" target="_blank"> link</a> (http://tinyurl.com/35ebtoa), I added it to the Toolbox in my project (more than once). &nbsp;I even rebooted.</p> <p>If I add the calendar extender manually and assign it to the textbox (for instance), I see the pop-up to remove the extender, but none to add one. &nbsp;The extender wizard is no where to be seen of course. &nbsp;This is also for the AJAX Toolkit sample projects.</p> <p>Any advice? &nbsp;Win 7 security issue not allowing extenders to install? &nbsp;Can I manually install these?</p> <p>Thanks.</p> <p>Dan</p> 2010-04-29T13:34:37-04:002010-04-29T13:34:37.37-04:00urn:uuid:00000000-0000-0000-0000-000003811132http://forums.asp.net/p/1552748/3811132.aspx/1?MS+AJAX+4+0+Preview+6MS AJAX 4.0 Preview 6 <p>Has Microsoft pulled the plug to this project.</p> <p>ASP.NET 4.0 is here but nothing is heard .. and even&nbsp;disappeared&nbsp;from every site...</p> <p><br> </p> <p><br> </p> <p><br> </p> 2010-04-29T14:40:06-04:002010-04-29T14:40:06.563-04:00urn:uuid:00000000-0000-0000-0000-000003794500http://forums.asp.net/p/1549298/3794500.aspx/1?How+to+start+with+AjaxHow to start with Ajax <p>Hi, I'm starting with Ajax, but I have some problem...</p> <p>I'm using VS 2008 with .Net 3.5 framework. I have installed the AjaxControlToolkit and I have tried successfully some controls like Accordion and CollapsiblePanel. All works fine.</p> <p>Now I'm starting with Sys.UI.DataView control, but I can't understand how to make it work.</p> <p>I've read many tutorials without success.</p> <p>In one tutorial I have read to add some of this:</p> <p><br> </p> <p><span style="color:#006699; background-color:inherit; font-weight:bold; padding:0px; margin:0px; border:initial none initial">&lt;</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">%@&nbsp;register&nbsp;</span><span style="color:red; background-color:inherit; padding:0px; margin:0px; border:initial none initial">assembly</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">=</span><span style="color:blue; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&quot;System.Web.Ajax&quot;</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&nbsp;</span><span style="color:red; background-color:inherit; padding:0px; margin:0px; border:initial none initial">namespace</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">=</span><span style="color:blue; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&quot;System.Web.UI&quot;</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&nbsp;</span><span style="color:red; background-color:inherit; padding:0px; margin:0px; border:initial none initial">tagprefix</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">=</span><span style="color:blue; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&quot;ajax&quot;</span><span style="color:black; background-color:inherit; padding:0px; margin:0px; border:initial none initial">&nbsp;%</span><span style="color:#006699; background-color:inherit; font-weight:bold; padding:0px; margin:0px; border:initial none initial">&gt;</span></p> <p><br> </p> <p><span style="color:#006699; background-color:inherit; font-weight:bold; padding:0px; margin:0px; border:initial none initial">but I haven't this dll in my filesystem.</span></p> <p><br> </p> <p><span style="color:#006699; background-color:inherit; font-weight:bold; padding:0px; margin:0px; border:initial none initial">So, is there some other file to install? I have looked for Ajax library but i can't find it...</span></p> <p><font class="Apple-style-span" color="#006699"><b><font class="Apple-style-span" color="#000000"><span class="Apple-style-span" style="font-weight:normal"><br> </span></font></b></font></p> 2010-04-20T14:32:30-04:002010-04-20T14:32:30.06-04:00urn:uuid:00000000-0000-0000-0000-000003696846http://forums.asp.net/p/1529030/3696846.aspx/1?Difference+b+w+onCommand+imperatively+vs+declaratively+Difference b/w onCommand imperatively vs declaratively? <p>When I create an oncommand statement&nbsp;imperatively, I can get the command to get called with the code below but the&nbsp;args parameter is &quot;undefined&quot;.&nbsp; Also, in this example the commandargument is the actual index value of the item.</p> <pre class="prettyprint">&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; &lt;head&gt; &lt;title&gt;Server Data&lt;/title&gt; &lt;style type=&quot;text/css&quot;&gt; .sys-template { visibility:hidden; display:none; } .imageslist {width:100%;margin:10px 0px 20px 0px; } .namedlistitem { cursor:pointer; border:solid 2px #666666; display:inline-block; margin:5px; color:#cccccc; height:140px; width:150px; background-color:#333333; overflow:hidden; text-align:center; } .si { background-color: Red;} &lt;/style&gt; &lt;script src=&quot;scripts/MicrosoftAjax/Start.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; var unitList; Sys.require([Sys.components.dataView, Sys.scripts.WebServices]); var units = [ { OID: &quot;1&quot;, Model: &quot;Model1&quot;, VIN: &quot;35G345G25&quot; }, { OID: &quot;2&quot;, Model: &quot;Model2&quot;, VIN: &quot;25H24H524&quot; }, { OID: &quot;3&quot;, Model: &quot;Model3&quot;, VIN: &quot;567Y5B6Y6&quot; }, { OID: &quot;4&quot;, Model: &quot;Model4&quot;, VIN: &quot;6YV546Y4V&quot; }, { OID: &quot;5&quot;, Model: &quot;Model5&quot;, VIN: &quot;9KM89K89K&quot; } ] Sys.onReady(function() { // Get the data from the service and display results using the DataView unitList = Sys.create.dataView(&quot;.imageslist&quot;, { data: units, autoFetch: &quot;true&quot;, selectedItemClass: &quot;si&quot;, initialSelectedIndex: 0, onCommand: onClick } ); }); function onClick(sender, args) { var index = sender.get_commandArgument();</pre><pre class="prettyprint"> alert(index.toString()); } &lt;/script&gt; &lt;/head&gt; &lt;body xmlns:sys="javascript:Sys" xmlns:dataview="javascript:Sys.UI.DataView"&gt; &lt;div class="imageslist sys-template"&gt; &lt;span class="namedlistitem" sys:command="select" sys:commandargument="{{&#36;index}}"&gt; &lt;div&gt;{{ OID }}&lt;/div&gt; &lt;div&gt;{{ Model }}&lt;/div&gt; &lt;div&gt;{{ VIN }}&lt;/div&gt; &lt;/span&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</pre> <P><BR>However, when I do it declaratively as below, the args&nbsp;parameter has a value but the sys:commandargument is just the string "{{&#36;index}}".</P><pre class="prettyprint">&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;Server Data&lt;/title&gt; &lt;style type="text/css"&gt; .sys-template { visibility:hidden; display:none; } .imageslist {width:100%;margin:10px 0px 20px 0px; } .namedlistitem { cursor:pointer; border:solid 2px #666666; display:block; margin:5px; color:#cccccc; height:140px; width:150px; background-color:#333333; overflow:hidden; text-align:center; } .si { background-color: Red;} &lt;/style&gt; &lt;script src="scripts/MicrosoftAjax/Start.debug.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; var unitList; Sys.require([Sys.components.dataView, Sys.scripts.WebServices]); var units = [ { OID: "1", Model: "Model1", VIN: "35G345G25" }, { OID: "2", Model: "Model2", VIN: "25H24H524" }, { OID: "3", Model: "Model3", VIN: "567Y5B6Y6" }, { OID: "4", Model: "Model4", VIN: "6YV546Y4V" }, { OID: "5", Model: "Model5", VIN: "9KM89K89K" } ] function onClick(sender, args) { alert(args.get_commandName()); } &lt;/script&gt; &lt;/head&gt; &lt;body xmlns:sys="javascript:Sys" xmlns:dataview="javascript:Sys.UI.DataView"&gt; &lt;div class="imageslist sys-template" sys:attach="dataview" dataview:autofetch="true" dataview:data="{{ units }}" dataview:selecteditemclass="si" dataview:oncommand="{{ onClick }}" dataview:initialselectedindex="0" &gt; &lt;span class="namedlistitem" sys:command="select" sys:commandargument="{{&#36;index}}"&gt; &lt;div&gt;{{ OID }}&lt;/div&gt; &lt;div&gt;{{ Model }}&lt;/div&gt; &lt;div&gt;{{ VIN }}&lt;/div&gt; &lt;/span&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p>Does anyone know why how I can get oncommand to work correctly imperatively?</p> <p>Also, I would like to change the itemtemplate for the specific item the user has just clicked on.&nbsp; Can anyone give me an idea how to do that?</p> <p>&nbsp;</p> <p>Thanks!!<br> </p> 2010-02-23T21:48:19-05:002010-02-23T21:48:19.59-05:00urn:uuid:00000000-0000-0000-0000-000003781234http://forums.asp.net/p/1546478/3781234.aspx/1?UpdatePanel+and+TabContainer+working+in+dev+broken+in+productionUpdatePanel and TabContainer working in dev.... broken in production <p>To Anyone:</p> <p>Site Basics:</p> <p>AjaxControlToolkit.dll v.3.0.31106.0</p> <p>System.Web.Ajax.dll&nbsp; v.3.0.31106.0</p> <p>.NET v. 3.5</p> <p>&nbsp;</p> <p>Dev Enviro:</p> <p>Windows 7</p> <p>VS 2008 &amp; 2010RC</p> <p>&nbsp;</p> <p>Production:</p> <p>Windows Server 2003 SP2</p> <p>IIS 6 - Specific website set to use .NET 2.0.50727</p> <p>.NET 1.0. 1.1, 2.0, 3.0, 3.5 all installed</p> <p>&nbsp;</p> <p>When I have the website in development the site works perfectly. However, after deploying it to the production machine for UAT, the site breaks. The site simply &quot;hangs&quot;, digging around I found the following javascript error:</p> <p>Message: Sys.ArgumentUndefinedException: Value cannot be undefined.<br> Parameter name: type<br> Line: 4613<br> Char: 12<br> Code: 0<br> URI: <a href="http://[Omitted]/ScriptResource.axd?d=BQ0HlZqbFsMd6UfjVUkphRlH2QKQDyrvuoLvWiZE1cY5zRStsSsBnGFs-hjzGNpB0&amp;t=5415bb6d"> http://[Omitted]/ScriptResource.axd?d=BQ0HlZqbFsMd6UfjVUkphRlH2QKQDyrvuoLvWiZE1cY5zRStsSsBnGFs-hjzGNpB0&amp;t=5415bb6d</a></p> <p>Now, Looking at that script the error is occuring within&nbsp;</p> <p><font size="2"></p> <p>&#36;create = Sys.Component.create</font></p> <p>function.&nbsp;On the default install of the site, the error occurs three times, 2 when the update panel posts back and 1 when the TabContainer is created. If I&nbsp;comment out the updatepanel, the&nbsp;error only occurs once for the TabContainer. </p> <p>I can absolutely confirm that there are NO server side errors in the processing of the page, no unusual behavior or exceptions. </p> <p>I can also confirm that another page that uses the AJAX control toolkit heavily is 100% file, no problems whatsoever. </p> <p>Please note that both of these pages are using the&nbsp;ToolkitScriptManager.</p> <p>Finally, I have included the relevant portions of my web.config, see below,&nbsp;file for examination as well. I have double checked that the relevant production values exactly match the dev values.</p> <p>What do I need? I need to know what is missing, misconfigured, etc. on the production environment that is causing this error to occur or I need to know an alternate fix. </p> <p>Thank You in advance for all your assistance.</p> <p>T.J.</p> <pre class="prettyprint">&lt;compilation debug=&quot;true&quot;&gt; &lt;assemblies&gt; &lt;add assembly=&quot;System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&quot;/&gt; &lt;add assembly=&quot;System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;add assembly=&quot;System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&quot;/&gt; &lt;add assembly=&quot;System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&quot;/&gt; &lt;add assembly=&quot;System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&quot;/&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;httpHandlers&gt; &lt;remove verb=&quot;*&quot; path=&quot;*.asmx&quot;/&gt; &lt;add verb=&quot;*&quot; path=&quot;*.asmx&quot; validate=&quot;false&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;add verb=&quot;*&quot; path=&quot;*_AppService.axd&quot; validate=&quot;false&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;add verb=&quot;GET,HEAD&quot; path=&quot;ScriptResource.axd&quot; type=&quot;System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot; validate=&quot;false&quot;/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name=&quot;ScriptModule&quot; type=&quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;/httpModules&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration=&quot;false&quot;/&gt; &lt;modules&gt; &lt;remove name=&quot;ScriptModule&quot;/&gt; &lt;add name=&quot;ScriptModule&quot; preCondition=&quot;managedHandler&quot; type=&quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name=&quot;WebServiceHandlerFactory-Integrated&quot;/&gt; &lt;remove name=&quot;ScriptHandlerFactory&quot;/&gt; &lt;remove name=&quot;ScriptHandlerFactoryAppServices&quot;/&gt; &lt;remove name=&quot;ScriptResource&quot;/&gt; &lt;add name=&quot;ScriptHandlerFactory&quot; verb=&quot;*&quot; path=&quot;*.asmx&quot; preCondition=&quot;integratedMode&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;add name=&quot;ScriptHandlerFactoryAppServices&quot; verb=&quot;*&quot; path=&quot;*_AppService.axd&quot; preCondition=&quot;integratedMode&quot; type=&quot;System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;add name=&quot;ScriptResource&quot; preCondition=&quot;integratedMode&quot; verb=&quot;GET,HEAD&quot; path=&quot;ScriptResource.axd&quot; type=&quot;System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&quot;/&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; &lt;runtime&gt; &lt;assemblyBinding xmlns=&quot;urn:schemas-microsoft-com:asm.v1&quot;&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name=&quot;System.Web.Extensions&quot; publicKeyToken=&quot;31bf3856ad364e35&quot;/&gt; &lt;bindingRedirect oldVersion=&quot;1.0.0.0-1.1.0.0&quot; newVersion=&quot;3.5.0.0&quot;/&gt; &lt;/dependentAssembly&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name=&quot;System.Web.Extensions.Design&quot; publicKeyToken=&quot;31bf3856ad364e35&quot;/&gt; &lt;bindingRedirect oldVersion=&quot;1.0.0.0-1.1.0.0&quot; newVersion=&quot;3.5.0.0&quot;/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt;</pre> <p><br> &nbsp;</p> <p><font color="#0000ff" size="2"></font>&nbsp;</p> <p><font color="#0000ff" size="2"></font>&nbsp;</p> <p>&nbsp;</p> 2010-04-13T00:24:59-04:002010-04-13T00:24:59.857-04:00urn:uuid:00000000-0000-0000-0000-000003792908http://forums.asp.net/p/1549010/3792908.aspx/1?AJAX+Client+Library+via+CDN+and+ScriptManagerAJAX Client Library via CDN and ScriptManager <p>Just thought to play around with Ajax client library and use watermark control. I have this code:</p> <p></p> <pre class="prettyprint">&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt; &lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;style type=&quot;text/css&quot;&gt; .wm { color: Gray } &lt;/style&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/beta/0911/Start.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.microsoft.com/ajax/beta/0911/extended/ExtendedControls.debug.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; Sys.require(Sys.components.watermark, function () { $(&quot;#name&quot;).watermark(&quot;&lt;enter a name&gt;&quot;, &quot;wm&quot;); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form runat=&quot;server&quot;&gt; &lt;asp:ScriptManager ID=&quot;ScriptManager1&quot; runat=&quot;server&quot;&gt; &lt;/asp:ScriptManager&gt; &lt;input type=&quot;text&quot; id=&quot;name&quot; size=&quot;50&quot; /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;</pre> <p><br> Ref: <a href="http://www.asp.net/ajaxlibrary/HOW%20TO%20Use%20the%20TextBoxWatermark%20Control.ashx"> http://www.asp.net/ajaxlibrary/HOW%20TO%20Use%20the%20TextBoxWatermark%20Control.ashx</a><br> </p> <p>Now it throws this error:</p> <p style="padding-left:30px"><i>Microsoft JScript runtime error: Sys.ArgumentTypeException: Object of type 'Sys.Extended.UI.TextBoxWatermarkBehavior' cannot be converted to type 'Sys.UI.Behavior'.<br> Parameter name: instance</i></p> <p style="">If I remove SM from the page it works....</p> <p style="">May be I am missing something really simple fact...???????<br> </p> 2010-04-19T21:45:18-04:002010-04-19T21:45:18.687-04:00urn:uuid:00000000-0000-0000-0000-000003780737http://forums.asp.net/p/1546350/3780737.aspx/1?Keeps+loading+debug+js+version+Keeps loading debug.js version <p>Hi,&nbsp;</p> <p>&nbsp;I'm referencing my scripts from within the ScriptManager. e.g:</p> <p>&lt;asp:ScriptManager ID=&quot;sm&quot; runat=&quot;server&quot; &gt;</p> <p></p> &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;Scripts&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;asp:ScriptReference Name=&quot;MicrosoftAjax.js&quot; Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjax.js&quot; /&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;asp:ScriptReference Name=&quot;MicrosoftAjaxWebForms.js&quot; Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjaxWebForms.js&quot; /&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;asp:ScriptReference Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/Start.js&quot; /&gt;&lt;/div&gt; &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;asp:ScriptReference Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/extended/ExtendedControls.js&quot; /&gt;&lt;/div&gt; <p></p> <p>&lt;Scripts&gt;</p> <p>&lt;asp:ScriptReference Name=&quot;MicrosoftAjax.js&quot; Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjax.js&quot; /&gt;</p> <p>&lt;asp:ScriptReference Name=&quot;MicrosoftAjaxWebForms.js&quot; Path=&quot;http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjaxWebForms.js&quot; /&gt;</p> <p>&lt;/Scripts&gt;</p> <p>&lt;/asp:ScriptManager&gt;</p> <p></p> <p><br> </p> <p>Everything works fine, but when I go to View Source on my site, it has this:</p> <p><span class="Apple-style-span" style="font-family:monospace; font-size:small; white-space:pre-wrap"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>=&quot;<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjax.debug.js">http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjax.debug.js</a>&quot; <span class="webkit-html-attribute-name">type</span>=&quot;<span class="webkit-html-attribute-value">text/javascript</span>&quot;&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </span></p> <p><span class="Apple-style-span" style="font-family:monospace; font-size:small; white-space:pre-wrap"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>=&quot;<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjaxWebForms.debug.js">http://ajax.microsoft.com/ajax/beta/0911/MicrosoftAjaxWebForms.debug.js</a>&quot; <span class="webkit-html-attribute-name">type</span>=&quot;<span class="webkit-html-attribute-value">text/javascript</span>&quot;&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </span></p> <p><span class="Apple-style-span" style="font-size:small"><span class="Apple-style-span" style="font-size:12px">Why is it doing this? I've done a search in my entire solution and not one reference is found to a &quot;x.debug.js&quot;. I've tried compiling in release mode. &nbsp;Any ideas?</span></span></p> <p><span class="Apple-style-span" style="font-size:small"><span class="Apple-style-span" style="font-size:12px">Thanks</span></span></p> <p></p> 2010-04-12T17:06:48-04:002010-04-12T17:06:48.84-04:00urn:uuid:00000000-0000-0000-0000-000003779757http://forums.asp.net/p/1546122/3779757.aspx/1?Animation+Extender+Code+Generator+or+IntellisenseAnimation Extender Code Generator or Intellisense <p>Hi, good day,</p> <p>I am using visual Studio 2010 RC1 and i have add AJAX Control Toolkit on it and i have found that it does not have intellisense on Animation Tag of the Animation Extender Control. also for other AJAX control toolkits.</p> <p>is there any how that i can add intellisense or just a 3rd party code generator for AJAX Control, Toolkits?</p> <p><br> </p> <p>Thnx<br> </p> 2010-04-12T06:56:35-04:002010-04-12T06:56:35.783-04:00urn:uuid:00000000-0000-0000-0000-000003782838http://forums.asp.net/p/1546864/3782838.aspx/1?Asp+net+Ajax+LibraryAsp.net Ajax Library <p>&nbsp;Was a new version of the ASP.NET Ajax Library Released along with Visual Studio? If not, when can we expect the production release?</p> 2010-04-13T17:51:30-04:002010-04-13T17:51:30.44-04:00urn:uuid:00000000-0000-0000-0000-000003736572http://forums.asp.net/p/1537273/3736572.aspx/1?Dataview+stops+populating+when+I+place+AjaxScriptManager+in+master+pageDataview stops populating when I place AjaxScriptManager in master page <p>Here is my Master page:</p> <p></p> <pre class="prettyprint">&lt;/asp:Content&gt;</pre> <p></p> <p><br> When I run this, the GetUnits fetchoperation does not run.&nbsp; If I comment out the ajaxscriptmanager, the GetUnits fetchoperation DOES run.&nbsp; I did try adding the individual script references for MicrosoftAjax.js, MicrosoftAjaxWebForms.js, etc., but that doesn't change the outcome - still no data.</p> <p><br> </p> <p>Can someone tell me what's wrong?!&nbsp; </p> <p>As an FYI, I often have to clear out my temporary files (C:\windOWS\microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files) in order for the fetchoperation to start working again after I remove the ajaxscriptmanager element.&nbsp; In other words, I can start with no ajaxscriptmanager, get data fine, add a ajaxscriptmanager and then, poof, no data.&nbsp; But when I go back and remove the ajaxscriptmanager, I have to clear out those temp files for the fetchoperation to start working again. </p> &lt;div style=&quot;position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;&quot; id=&quot;_mcePaste&quot;&gt;&lt;%@ master language=&quot;VB&quot; codefile=&quot;MasterPage.master.vb&quot; inherits=&quot;test.MasterPage&quot; %&gt;<br> <br> &lt;%@ register assembly=&quot;System.Web.Ajax&quot; namespace=&quot;System.Web.UI&quot; tagprefix=&quot;ajax&quot; %&gt;<br> &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br> &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br> &lt;head id=&quot;Head1&quot; runat=&quot;server&quot;&gt;<br> &nbsp;&nbsp;&nbsp; &lt;title&gt;&lt;/title&gt;<br> &nbsp;&nbsp;&nbsp; &lt;link rel=&quot;Stylesheet&quot; type=&quot;text/css&quot; href=&quot;styles/common.css&quot; runat=&quot;server&quot; /&gt;<br> &lt;/head&gt;<br> &lt;body id=&quot;body&quot; runat=&quot;server&quot; xmlns:sys=&quot;javascript:Sys&quot; xmlns:dataview=&quot;javascript:Sys.UI.DataView&quot;&gt;<br> &nbsp;&nbsp;&nbsp; &lt;form id=&quot;frmTA&quot; runat=&quot;server&quot;&gt;<br> &nbsp;&nbsp;&nbsp; &lt;ajax:ajaxscriptmanager id=&quot;sm&quot; runat=&quot;server&quot;&gt;&lt;/ajax:ajaxscriptmanager&gt;<br> &nbsp;&nbsp;&nbsp; This is before the content<br> &nbsp;&nbsp;&nbsp; &lt;br /&gt;<br> &nbsp;&nbsp;&nbsp; &lt;asp:contentplaceholder id=&quot;ph&quot; runat=&quot;server&quot;&gt;&lt;/asp:contentplaceholder&gt;<br> &nbsp;&nbsp;&nbsp; &lt;br /&gt;<br> &nbsp;&nbsp;&nbsp; This is after the content<br> &nbsp;&nbsp;&nbsp; &lt;/form&gt;<br> &lt;/body&gt;<br> &lt;/html&gt;&lt;/div&gt; 2010-03-17T19:11:05-04:002010-03-17T19:11:05.91-04:00urn:uuid:00000000-0000-0000-0000-000003713829http://forums.asp.net/p/1532581/3713829.aspx/1?Refreshing+a+dataview+with+new+fetchParametersRefreshing a dataview with new fetchParameters <p>Given this simple example:</p> <p><pre class="prettyprint">&lt;/body&gt;</pre><br> &lt;/div&gt;</p> 2010-03-04T16:07:48-05:002010-03-04T16:07:48.19-05:00urn:uuid:00000000-0000-0000-0000-000003775603http://forums.asp.net/p/1545282/3775603.aspx/1?ASP+Net+Ajax+client+side+framework+failed+to+loadASP.Net Ajax client-side framework failed to load <p>Hi Everyone,</p> <p>I am using VS 2008 V3.5 SP1.&nbsp; I have a problem with AJAX Extender.&nbsp; &nbsp;I download <span id="TitleLabel">ASP.NET Ajax Library 0911 Beta</span> and installed it without any problem, but when I was trying to use AJAX extender I am getting the error message :&quot;Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.&quot;&nbsp; Can someone show me how to fix this?&nbsp; Thanks so much.</p> 2010-04-09T01:46:13-04:002010-04-09T01:46:13.99-04:00urn:uuid:00000000-0000-0000-0000-000003704676http://forums.asp.net/p/1530764/3704676.aspx/1?Ajax+Library+on+Win7+IIS+in+Integrated+Pipeline+mode+causes+security+exceptionAjax Library on Win7, IIS in Integrated Pipeline mode - causes security exception <p>I have some test sites with the Ajax Library Beta running on my Win7 workstation. When the I use the Classic .NET Application Pool (Classic Pipeline) the sites (along with the Toolkit Controls) work just fine.</p> <p>If I use the DefaultAppPool (Integrated Pipeline) I get a security exception when trying to use the Ajax Library. If I remove the reference to the assembly I no longer get the security exception (I of course get other errors since I still have the toolkit controls on the page).</p> <p>Any ideas why Integrated Pipeline would give me the security exceptions?</p> 2010-02-27T17:27:56-05:002010-02-27T17:27:56.757-05:00urn:uuid:00000000-0000-0000-0000-000003772383http://forums.asp.net/p/1544581/3772383.aspx/1?Seadragon+behaviour+in+AjaxControlToolkitSeadragon behaviour in AjaxControlToolkit <p>I'm looking to implement Seadragon using the version supplied in the Ajax Control Toolkit, however there are two issues I can't find an answer to:</p> <p><br> </p> <ol> <li>The ACT version does not respond to the mouse wheel for scrolling in or out; is there a way to get this working? I can't find anything in the documentation</li><li>The controls on Seadragon do not fade in and out like they do on the standalone Ajax version shown on the Seadragon website; again, is there an option to enable this behaviour in the ACT version?</li></ol> <p>Thanks in advance</p> 2010-04-07T13:30:52-04:002010-04-07T13:30:52.41-04:00urn:uuid:00000000-0000-0000-0000-000003751254http://forums.asp.net/p/1540408/3751254.aspx/1?Accordion+resets+after+updatepanel+postbackAccordion resets after updatepanel postback <p>hey ,</p> <p>I'm using the CDN and have an accordion panel that works client-side. This accordion is inside an updatepanel. I have two repeaters, one in each accordion pane. When I've got the second pane open, and a postback occurs, the accordion resets and closes the second pane and opens the first one. (There's no animation, it just appears like that after the postback). Is there a way to update the panel without having the accordion reset? I tried using:</p> <p><br> </p> <p>&#36;(this).set_SelectedIndex(1);</p> <p><br> </p> <p><br> </p> <p>which kept the pane open, but the updatepanel didn't refresh (even though a postback occurred).&nbsp;</p> <p>Is there a way to have the updatepanel partial-postback the data, refresh and keep the accordion pane open?</p> <p>Thanks</p> 2010-03-25T18:38:25-04:002010-03-25T18:38:25.353-04:00