 |
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
|
|
|
|

August 17th, 2010, 02:55 PM
|
Authorized User
|
|
Join Date: Jul 2010
Posts: 74
Thanks: 23
Thanked 0 Times in 0 Posts
|
|
Chapter 13 LINQ Page452 Try It Out
Hello there,
I did this Try It Out step by step carefully, but the finaly display is strange. I inserted five Description, Tooltip and ImageUrl, namely (GD1,GT1,GI1),(GD2,GT2,GI2),(GD3,GT3,GI3),(GD4,GT4 ,GI4),(GD5,GT5,GI5). But it only shows the 1, 3 and 5 recordS. And these three records are not on the same height, like going downstairs. What is going on here?
I do not know how to upload the screenshots. And hope my question is clear enough to understand.
Now I solved the displaying problem, all the records can be shown. Because I did not delete the tags in the ListView, I only deleted the content in these tags before.
But these records still are not on the same height, still like going downstairs. So how to solve that problem?
I re-do the step6 to step11, now it works well. But what was happening there?
Last edited by JohnKiller; August 17th, 2010 at 03:32 PM..
|

August 17th, 2010, 04:56 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi there,
It sounds like you may have had an empty AlternatingItemTemplate?
Imar
|

August 17th, 2010, 05:25 PM
|
Authorized User
|
|
Join Date: Jul 2010
Posts: 74
Thanks: 23
Thanked 0 Times in 0 Posts
|
|
It may be I did not remove all the things which wrote in the try it out.
Thanks.
|

August 28th, 2010, 11:43 AM
|
Registered User
|
|
Join Date: Jun 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
GridView and DetailsView Surrounding Border
Hi Imar,
Thanks so far so good on chap. 12. Iâm at the end and have already begun LINQ to SQL.
However, is there anyway I can get rid of the border tables around the Grid and Details View. It shows in all the browser: IE, Chrome and Firefox. That kind of spoils the feel of the site.
Hope to get your response soonest.
Thanks.
MerryMan.
|

August 28th, 2010, 11:46 AM
|
Registered User
|
|
Join Date: Jun 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
The perceived speed of the AJAX UpdatePanel
CHAP12(Pg.395)
Hello everyone, its been a while I posted. Sorry bout that.
Anyways, Iâm curious to know something from chap 1. Does using a partial postback (AJAX) increase the speed of the response time; or its still the same thing, only just being âPERCEIVEDâ to be faster.
Thanks,
MerryMan.
|

August 29th, 2010, 08:45 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
It depends on what code gets executed. Clearly, the more code you execute, the slower the page will be. However, if you only send back a tiny bit of data, the page can actually load faster because you have less network overhead.
In short: you can't really say something about this in general as there are too many factors influencing the performance. They only way to tell is by measuring the actual performance....
Cheers,
Imar
|
|
 |