Wrox Programmer Forums
|
BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3
This is the forum to discuss the Wrox book Beginning ASP.NET 3.5: In C# and VB by Imar Spaanjaars; ISBN: 9780470187593
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 24th, 2011, 02:34 AM
Authorized User
 
Join Date: Aug 2011
Posts: 44
Thanks: 14
Thanked 0 Times in 0 Posts
Default Chapter 13, page 454: removal of runat attributes

In a "Try It Out" of chapter 13 (LINQ), on page 454, step 9 says, among other things, to remove the runat attribute of a BulletedList in the LayoutTemplate of a ListView.

Why ?
What is the reason of this removal ?
 
Old August 24th, 2011, 01:33 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

Not from the BulletedList, but from the bulleted list. This is a small, but important difference. A BulletedList is a server side control that must have the runat attribute in order to function. In the example you're referring to, the code contains a client side bulleted list using <ul> and <li> elements. For the exercise, there's no need to run this control at the server, so removing the attribute turns it into a simple, client side ul. By removing the attribute your page might perform a bit faster (although I doubt you could measure the difference), but more importantly, it also removes the client id from the <ul> in the final HTML, causing less HTML to be sent to the browser. Since the ul is styled through its CSS class, you don't need the id at the client.

All of these benefits are tiny though. I like clean HTML and typically try to remove what I don't need. However, with the runat attribute it would still work; but you wouldn't be using any of the benefits that this attribute gives you here.

Hope this helps,
Imar
__________________
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Follow me on Twitter

Author of Beginning ASP.NET 4.5 : in C# and VB, Beginning ASP.NET Web Pages with WebMatrix
and Beginning ASP.NET 4 : in C# and VB.
Did this post help you? Click the button below this post to show your appreciation!
The Following User Says Thank You to Imar For This Useful Post:
Antonius Block (August 25th, 2011)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Chapter 13,page 462 Masego.Moikanyang BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 25 April 16th, 2011 01:17 PM
Chapter 13,page 440. Masego.Moikanyang BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 6 March 17th, 2011 10:45 AM
Chapter 13, Page 465 Try it Out dstreeter BOOK: Beginning ASP.NET 4 : in C# and VB 3 November 7th, 2010 10:41 AM
page 456, chapter 13. leemark2k3 BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 8 September 21st, 2010 08:21 PM
Chapter 12, Try It Out, p.454, bad TagPrefix VictorVictor BOOK: Beginning ASP.NET 2.0 BOOK VB ISBN: 978-0-7645-8850-1; C# ISBN: 978-0-470-04258-8 3 February 23rd, 2006 02:39 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.