Chapter 4: Using the Wizard to Create Easy-to-Use Forms
I'm at the Try It Out: Using the Wizard to Create Easy-to-Use Forms
In step 8 where I am supposed to paste in the code:
Result.Text = âYour name is â + YourName.Text;
Result.Text += â<br />Your favorite language is â +
FavoriteLanguage.SelectedValue;
Visual Studio does not recognise Results.Text
Error message: 'System.Web.UI.WebControls.WizardStep' does not contain a definition for 'Text' and no extension method 'Text' accepting a first argument of type 'System.Web.UI.WebControls.WizardStep' could be found (are you missing a using directive or an assembly reference?)
Does anyone know how to solve this problem?
|