<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Discussion and Suggestions</title><link>http://forums.asp.net/1007.aspx</link><description>This forum is the place for ASP.NET AJAX 'getting started' questions, general questions that don't fit in one of the other forums about AJAX </description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/2145015.aspx</link><pubDate>Thu, 31 Jan 2008 13:14:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2145015</guid><dc:creator>trujello</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2145015.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=2145015</wfw:commentRss><description>&lt;p&gt;Where does this code go? I&amp;#39;m trying to do the same thing and I&amp;#39;m confused with the code you pasted in... it doesn&amp;#39;t like it ...&lt;/p&gt;&lt;p&gt;I&amp;#39;ve done the same sort of thing in php and xajax, but need to do it in asp.net now...&lt;/p&gt;&lt;p&gt;Your help would be greatly appreciated!&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1695836.aspx</link><pubDate>Fri, 04 May 2007 21:58:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1695836</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1695836.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1695836</wfw:commentRss><description>&lt;p&gt;3 months later, and out of AJAX RC, the solution to this problem was this:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded( function() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sys.WebForms.PageRequestManager.getInstance()._asyncPostBackControlClientIDs.push( "txt" );} ); &lt;/p&gt;&lt;p&gt;&amp;nbsp;Thanks again,&lt;/p&gt;&lt;p&gt;&amp;nbsp; Miha.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534451.aspx</link><pubDate>Tue, 16 Jan 2007 14:31:13 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534451</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534451.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534451</wfw:commentRss><description>&lt;p&gt;Luis, this is excellent. It works. I'll see what changes I have to make to make my example work and I'll post the solution to my problem (should someone else have the same problem).&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Tnx, &lt;/p&gt;&lt;p&gt;&amp;nbsp;Miha.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534403.aspx</link><pubDate>Tue, 16 Jan 2007 14:11:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534403</guid><dc:creator>Luis Abreu</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534403.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534403</wfw:commentRss><description>&lt;p&gt;hello.&lt;/p&gt;&lt;p&gt;try running this:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true"&amp;nbsp; %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;script runat="server"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected override void OnLoad(EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; base.OnLoad(e);&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (ScriptManager1.IsInAsyncPostBack &amp;amp;&amp;amp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Request.Params["__EVENTTARGET"] == "txt")&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; panel.Update();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;html xmlns="http://www.w3.org/1999/xhtml" &amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;head id="Head1" runat="server"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; function main()&lt;br /&gt;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Add Client Code here&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id="form1" runat="server"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ScriptManager ID="ScriptManager1" runat="server"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/asp:ScriptManager&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:updatepanel runat="server" id="panel" UpdateMode="Conditional"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; panel 1:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;%= DateTime.Now.ToString() %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/asp:updatepanel&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:updatepanel runat="server" id="Updatepanel1" UpdateMode="Conditional"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; panel 2:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;%= DateTime.Now.ToString() %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/asp:updatepanel&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="text"&amp;nbsp; id="txt" onchange="__doPostBack('txt','');"; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded( function() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sys.WebForms.PageRequestManager.getInstance()._asyncPostBackControlClientIDs.push( "txt" );} );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/html&amp;gt; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534276.aspx</link><pubDate>Tue, 16 Jan 2007 12:14:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534276</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534276.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534276</wfw:commentRss><description>&lt;p&gt;Sorry. I'm a bit rusty with javascript.&lt;/p&gt;&lt;p&gt;So, I added it to the array. &amp;nbsp; &lt;/p&gt;&lt;p&gt;If I remove the trigger &amp;lt;asp:AsyncPostBackTrigger ControlID="SearchBoxx" EventName="TextChanged" /&amp;gt; from the &amp;lt;triggers&amp;gt; in aspx, the array size decreases to 0, and is 1 after I add the 'SearchBox' HTML control to it. It still does &lt;b&gt;not&lt;/b&gt; work, because it now refreshes the whole page again. There is something missing to this story. Something to tell the pagerequest manager to only update the updatepanel? The markup generated for the textboxes is &lt;b&gt;identical&lt;/b&gt; in both cases. The only difference on the page is this:&lt;/p&gt;&lt;p&gt;Sys.WebForms.PageRequestManager.getInstance()._updateControls(['tUpdatePanel1'], ['SearchBoxx'], [], 90);&lt;/p&gt;&lt;p&gt;When there is no &amp;lt;trigger&amp;gt; present, the second parameter is empty. And I tried to add that to a script at the end of the ASPX file, but it still refreshes the whole page....&lt;/p&gt;&lt;p&gt;Aaaaa. I would really like to get rid of the asp:TextBox control, as it is doing nothing on the page...&lt;/p&gt;&lt;p&gt;Miha&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534262.aspx</link><pubDate>Tue, 16 Jan 2007 11:56:53 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534262</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534262.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534262</wfw:commentRss><description>&lt;p&gt;Luis, can you please help me with _asyncPostbackControlsIds collection? Where do I find it? The PageRequestManager does not seem to have it. I've put a script block at the end of the aspx file and I got an undefined value for _asyncPostbackControlsIds.&lt;/p&gt;&lt;p&gt;Aha, I found out it is a typo. But nontheless, the code doesn't work. There must be another way to register this HTML control with pagerequest manager object. The code I tried is:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;pre class="coloredcode"&gt;        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm._asyncPostBackControlIDs.add(&lt;span class="st"&gt;'SearchBox'&lt;/span&gt;);&lt;/pre&gt;&amp;nbsp; Thanks, Miha.&lt;br /&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534231.aspx</link><pubDate>Tue, 16 Jan 2007 11:14:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534231</guid><dc:creator>Luis Abreu</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534231.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534231</wfw:commentRss><description>&lt;p&gt;hello.&lt;/p&gt;&lt;p&gt;Triggers are only meant to be used with server side controls. if you have a regular HTML control&amp;nbsp; which starts a postback, then you can try to add the client id of that control to the _asyncPostbackControlsIDs collection maintained by the pagerequestmanager object.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1534141.aspx</link><pubDate>Tue, 16 Jan 2007 09:33:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1534141</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1534141.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1534141</wfw:commentRss><description>&lt;p&gt;Thanks. I pretty much solved the problem with "ordinary" input type=textbox field and a javascript event handler. I did find out, though, that if I remove the &amp;lt;asp:TextBox&amp;gt; from the page (although I am not using it) the __doPostback updates the whole page, not just the UpdatePanel content. To explain better:&lt;/p&gt;&lt;p&gt;Page has an ordinary text box and &lt;i&gt;asp:TextBox&lt;/i&gt; on it. Both text boxes are outside of the update panel. Within an Update panel, there is a AsyncPostBackTrigger, referring to asp:TextBox control (which I am &lt;b&gt;not&lt;/b&gt; using). When I use the ordinary text box, everything works (meaning that the updates only affect update panel). So, if I remove the AsyncPostBackTrigger, the __doPostBack, triggered by ordinary textbox updates the whole page. If I try to wire AsyncPostBackTrigger with ordinary textbox, I get an error &lt;font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt;&lt;pre&gt;A control with ID 'SearchBox' could not be found for the trigger in UpdatePanel 'UpdatePanel1'.&lt;/pre&gt;&lt;pre&gt;Because there is no control. (it is just markup...). &amp;nbsp;Is there a way to wire ordinary form field (not asp.net control) with updatepanel?&lt;/pre&gt;&lt;pre&gt;Miha&amp;nbsp;&lt;/pre&gt;&lt;/font&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1532816.aspx</link><pubDate>Mon, 15 Jan 2007 14:12:57 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1532816</guid><dc:creator>Caddre</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1532816.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1532816</wfw:commentRss><description>&lt;p&gt;What you want is easier with JavaScript per the thread below, if you choose to use AJAX search Garbin's blog for all related posts and modify the code as needed.&amp;nbsp; Hope this helps.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://forums.asp.net/thread/1348454.aspx"&gt;http://forums.asp.net/thread/1348454.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1532777.aspx</link><pubDate>Mon, 15 Jan 2007 13:28:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1532777</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1532777.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1532777</wfw:commentRss><description>&lt;p&gt;Thanks. The Garbin's post looks helpful -- the Behaviour class documentation is useless (I found that before) in helping understand what Behavirours are all about.&lt;/p&gt;&lt;p&gt;I'd like to change the the onkeypress event handling of the TextBox control to do a postback on every keypress... I hope behaviours are the right direction to go to?&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;&amp;nbsp;Miha.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1532760.aspx</link><pubDate>Mon, 15 Jan 2007 13:16:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1532760</guid><dc:creator>Caddre</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1532760.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1532760</wfw:commentRss><description>&lt;blockquote&gt;&lt;div&gt;&lt;img src="http://forums.asp.net/Themes/default/images/icon-quote.gif" /&gt; &lt;strong&gt;mihav:&lt;/strong&gt;&lt;/div&gt;&lt;div&gt; 
&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;Can someone please point me to the a place, where Behaviours are explained? I found that some controls have custom behaviours and I found a client side Behaviours class.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;It is covered in the docs and explained with code by long time AJAX user Garbin.&amp;nbsp; Hope this helps.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://ajax.asp.net/docs/ClientReference/Sys.UI/BehaviorClass/default.aspx"&gt;http://ajax.asp.net/docs/ClientReference/Sys.UI/BehaviorClass/default.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aspadvice.com/blogs/garbin/archive/2006/01/23/14786.aspx"&gt;http://aspadvice.com/blogs/garbin/archive/2006/01/23/14786.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>AJAX Behaviours -- documentation</title><link>http://forums.asp.net/thread/1532495.aspx</link><pubDate>Mon, 15 Jan 2007 08:29:16 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1532495</guid><dc:creator>mihav</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1532495.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1532495</wfw:commentRss><description>&lt;p&gt;Hi!&lt;/p&gt;&lt;p&gt;Can someone please point me to the a place, where Behaviours are explained? I found that some controls have custom behaviours and I found a client side Behaviours class.&lt;/p&gt;&lt;p&gt;I'd like to modify the onkeypress handler of a asp:TextBox control -- is Behaviour the right place to do so?&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;&amp;nbsp; Miha.&lt;br /&gt;&amp;nbsp; &lt;/p&gt;</description></item></channel></rss>