Wrox Programmer Forums
|
BOOK: Beginning ASP.NET 4.5 : in C# and VB
This is the forum to discuss the Wrox book Beginning ASP.NET 4.5: in C# and VB by Imar Spaanjaars; ISBN: 978-1-118-31180-6
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning ASP.NET 4.5 : in C# and VB 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 June 30th, 2014, 01:08 PM
Authorized User
 
Join Date: Jun 2014
Posts: 16
Thanks: 7
Thanked 0 Times in 0 Posts
Default Chapter 4: Using the Wizard to Create Forms

Received Error Message: The left-hand side of an assignment must be a variable, property or indexer C:\BegASPNETCS\Site\Demos\Containers.aspx.cs

Code:
protected void Wizard1_FinishButtonClick(object sender, WizardNavigationEventArgs e)
    {
        Result.Text = "Your name is " + YourName.Text;
        Result.Text += "<br />Your favorite language is" =
            FavoriteLanguage.SelectedValue;
    }
Same error message when using the source downloaded code from Chapter 4. Thks.

Cheers,
Mohamad
 
Old June 30th, 2014, 03:07 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,

Take a look at this:

Code:
Result.Text += "<br />Your favorite language is" = FavoriteLanguage.SelectedValue;
See that last equals sign? That should be a plus. You may also want to add an additional space after the word is giving you this code:

Code:
Result.Text += "<br />Your favorite language is " + FavoriteLanguage.SelectedValue;
Quote:
Same error message when using the source downloaded code from Chapter 4
Are you sure you copied over the correct code or ran the correct file? The code that comes with the book is correct and should run without an error.

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!
The Following User Says Thank You to Imar For This Useful Post:
mohamad (June 30th, 2014)
 
Old June 30th, 2014, 09:14 PM
Authorized User
 
Join Date: Jun 2014
Posts: 16
Thanks: 7
Thanked 0 Times in 0 Posts
Default

Thanks Imar,

Typo error on my part. The source downloaded code from Chapter 4 also work fine.

Cheers,
Mohamad





Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with the CH 4 Using the Wizard to Create Easy-to-Use-Forms RogueAkula BOOK: Professional ASP.NET 4 : in C# and VB 1 December 15th, 2013 09:42 PM
using create user wizard sophia BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 18 November 18th, 2009 11:57 AM
modify create appointment wizard jeanhl BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 1 March 24th, 2008 03:37 AM
Wizard control in Windows Forms? wakeup Pro Visual Basic 2005 0 May 15th, 2006 10:35 AM
Wizard Interface - switching between forms edwardforgacs C# 1 September 7th, 2003 04:56 AM





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