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 October 5th, 2009, 01:39 PM
Authorized User
 
Join Date: Sep 2008
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default Chapter 13

Hello Imar ,

I was trying to do the exercise 3 of the chapter 13 about LINQ. I did exactly as you wrote in the answer of that exercise, but i got the following error ;

"Input string was not in a correct format."

I got this error for the following line :

Code:
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%#  "PictureDetails.aspx?Id=" + Eval("Id") %>' >
Can you please help me to solve this problem ?
Thanks.
 
Old October 5th, 2009, 02:25 PM
Authorized User
 
Join Date: Sep 2009
Posts: 23
Thanks: 9
Thanked 1 Time in 1 Post
Default

Hello,

I'm far from the expert, but at quick glance it looks like you forgot to call the ToString() method against the Eval as follows to match the Exercise 3 solution on page 678:

Code:
Eval("Id").ToString()
John
 
Old October 5th, 2009, 04:31 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Yep, John is correct. This is a bug in the answer of the exercise. Check out the errata section:

http://www.wrox.com/WileyCDA/WroxTit...Cd-ERRATA.html

It's (currently) the last item in the list.

Cheers,

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!
 
Old October 6th, 2009, 12:18 PM
Authorized User
 
Join Date: Sep 2008
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Yes gentelmen you are right, that is the solution.
I added .ToString() and now everything is ok.

Thanks a lot.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Chapter 13 bwoll BOOK: Beginning Access 2003 VBA 1 June 7th, 2007 03:57 PM
Chapter 13 - vb ganesh_jai BOOK: Beginning ASP.NET 2.0 BOOK VB ISBN: 978-0-7645-8850-1; C# ISBN: 978-0-470-04258-8 0 January 15th, 2007 12:36 PM
Chapter 13 ElMorenito BOOK: Beginning ASP 3.0 0 January 14th, 2005 02:56 PM





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