<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: How to create a dynamic, hierarchical accordion with .NET</title>
	<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/</link>
	<description></description>
	<pubDate>Thu, 21 Aug 2008 19:47:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>By: Steven Quick</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-924</link>
		<author>Steven Quick</author>
		<pubDate>Wed, 27 Feb 2008 23:52:39 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-924</guid>
					<description>My concern with using the ASP.NET ajax stuff is the page weight.  Just looking at the demo page with firebug &#38; yslow

79.2K	1	HTML/Text
138.8K	8	JavaScript Files
0.2K	1	Stylesheet File
218.3K	Total size
10	HTTP requests

Of course after the first load the css and js should be cached but for having almost nothing on the page 219KB is huge.  Image a full page with alot of features?</description>
		<content:encoded><![CDATA[<p>My concern with using the ASP.NET ajax stuff is the page weight.  Just looking at the demo page with firebug &amp; yslow</p>
<p>79.2K	1	HTML/Text<br />
138.8K	8	JavaScript Files<br />
0.2K	1	Stylesheet File<br />
218.3K	Total size<br />
10	HTTP requests</p>
<p>Of course after the first load the css and js should be cached but for having almost nothing on the page 219KB is huge.  Image a full page with alot of features?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: David Baxter</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-925</link>
		<author>David Baxter</author>
		<pubDate>Thu, 28 Feb 2008 14:00:26 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-925</guid>
					<description>Hey Steven, thanks for writing. You have valid concerns, but lets see if I can break it down a bit to make sense of things.

The 79K for the HTML is because there actually is a good bit of text on the page. Each category has 5 sub categories, each subcategory has 5 products. That means there are basically 125 little paragraphs built into the page. That isn't a small amount of markup.

The Javascript is what ASP.NET is bringing to the table. That will be cached like you said, but, if you were doing the effect with any javascript library (Prototype alone is 120K) it wouldn't be much smaller, so ASP.NET isn't really a hog.

The 10 HTTP Requests are because the page is built with AJAX technology. To get all the goodies, the page is going back to the server a few times. This would be true no matter how you built your ajax.

To have an effect like this does add overhead, no question about it, but using ASP.NET as opposed to another library really doesn't change the amount of overhead.

On a tangential subject...I have been trolling around some of the most popular sites (IGN, Yahoo, etc.) and checking their page size. Those pages are friggen huge. IGN is over a meg, Yahoo was over 600K. These are some of the most popular sites on the net so this makes me wonder how important page size really is. Now I am not saying to ignore page size, but in the world of broadband, it does seem to be less important on the site's success.

Hope that helps.
David</description>
		<content:encoded><![CDATA[<p>Hey Steven, thanks for writing. You have valid concerns, but lets see if I can break it down a bit to make sense of things.</p>
<p>The 79K for the HTML is because there actually is a good bit of text on the page. Each category has 5 sub categories, each subcategory has 5 products. That means there are basically 125 little paragraphs built into the page. That isn&#8217;t a small amount of markup.</p>
<p>The Javascript is what ASP.NET is bringing to the table. That will be cached like you said, but, if you were doing the effect with any javascript library (Prototype alone is 120K) it wouldn&#8217;t be much smaller, so ASP.NET isn&#8217;t really a hog.</p>
<p>The 10 HTTP Requests are because the page is built with AJAX technology. To get all the goodies, the page is going back to the server a few times. This would be true no matter how you built your ajax.</p>
<p>To have an effect like this does add overhead, no question about it, but using ASP.NET as opposed to another library really doesn&#8217;t change the amount of overhead.</p>
<p>On a tangential subject&#8230;I have been trolling around some of the most popular sites (IGN, Yahoo, etc.) and checking their page size. Those pages are friggen huge. IGN is over a meg, Yahoo was over 600K. These are some of the most popular sites on the net so this makes me wonder how important page size really is. Now I am not saying to ignore page size, but in the world of broadband, it does seem to be less important on the site&#8217;s success.</p>
<p>Hope that helps.<br />
David</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: website designer melbourne</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-929</link>
		<author>website designer melbourne</author>
		<pubDate>Wed, 05 Mar 2008 23:35:20 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-929</guid>
					<description>hi i am working on one of my client website and i need a accordian effect my probleam is i wnat to bind them with database accordian header and every thing else is comming from database is there any way to do this?</description>
		<content:encoded><![CDATA[<p>hi i am working on one of my client website and i need a accordian effect my probleam is i wnat to bind them with database accordian header and every thing else is comming from database is there any way to do this?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: David Baxter</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-930</link>
		<author>David Baxter</author>
		<pubDate>Thu, 06 Mar 2008 00:22:13 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-930</guid>
					<description>Hey Melbourne, I have to admit, I am a bit confused by the question. Can you clarify?

David</description>
		<content:encoded><![CDATA[<p>Hey Melbourne, I have to admit, I am a bit confused by the question. Can you clarify?</p>
<p>David</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: website designer melbourne</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-931</link>
		<author>website designer melbourne</author>
		<pubDate>Thu, 06 Mar 2008 04:41:13 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-931</guid>
					<description>i am using ajax accordian panel and i need to bind with database just like datagrid or repater control.

some thing like this but it will not work as you cant but repater inside accordian ......
but i need some thing to bind accordian with database.
 
                        
                            
                            
                            
                            
                        
            
                
                      
                            
                            
            </description>
		<content:encoded><![CDATA[<p>i am using ajax accordian panel and i need to bind with database just like datagrid or repater control.</p>
<p>some thing like this but it will not work as you cant but repater inside accordian &#8230;&#8230;<br />
but i need some thing to bind accordian with database.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: website designer melbourne</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-932</link>
		<author>website designer melbourne</author>
		<pubDate>Thu, 06 Mar 2008 04:42:22 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-932</guid>
					<description>i am using ajax accordian panel and i need to bind with database just like datagrid or repater control.

some thing like this 


                        
                            
                            
                            
                            
                        
            
                
                      
                            
                            
              


but it will not work as you cant but repater inside accordian ......
but i need some thing to bind accordian with database.</description>
		<content:encoded><![CDATA[<p>i am using ajax accordian panel and i need to bind with database just like datagrid or repater control.</p>
<p>some thing like this </p>
<p>but it will not work as you cant but repater inside accordian &#8230;&#8230;<br />
but i need some thing to bind accordian with database.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: website designer melbourne</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-935</link>
		<author>website designer melbourne</author>
		<pubDate>Thu, 06 Mar 2008 04:45:15 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-935</guid>
					<description>hi david its like accordina inside repater i have tried so manny time pasing a code but i think it is not taking as comment....</description>
		<content:encoded><![CDATA[<p>hi david its like accordina inside repater i have tried so manny time pasing a code but i think it is not taking as comment&#8230;.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: David Baxter</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-936</link>
		<author>David Baxter</author>
		<pubDate>Thu, 06 Mar 2008 14:51:07 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-936</guid>
					<description>It is usually best to email me code...something about my comment system here doesn't like it.

david at creativeui dot com.

David</description>
		<content:encoded><![CDATA[<p>It is usually best to email me code&#8230;something about my comment system here doesn&#8217;t like it.</p>
<p>david at creativeui dot com.</p>
<p>David</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-962</link>
		<author>Jim</author>
		<pubDate>Sun, 30 Mar 2008 14:05:40 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-962</guid>
					<description>Cool.  Salute to your nice job.</description>
		<content:encoded><![CDATA[<p>Cool.  Salute to your nice job.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Telugu Movie Reviews</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-985</link>
		<author>Telugu Movie Reviews</author>
		<pubDate>Tue, 06 May 2008 06:42:59 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-985</guid>
					<description>Thank you</description>
		<content:encoded><![CDATA[<p>Thank you</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-1034</link>
		<author>Mike</author>
		<pubDate>Thu, 24 Jul 2008 17:39:58 +0000</pubDate>
		<guid>http://www.creativeui.com/2008/02/12/how-to-create-a-dynamic-hierarchical-accordion-with-net/#comment-1034</guid>
					<description>I cant access the Accordion Datasource in the codebehind, do you have any idea why that would be?</description>
		<content:encoded><![CDATA[<p>I cant access the Accordion Datasource in the codebehind, do you have any idea why that would be?</p>
]]></content:encoded>
				</item>
</channel>
</rss>
