Hi, I stopped at page 341(Chapter 9: code).
"Inheritance.aspx" is added under the root."Vehicles.cs" is added under the folder "App_Code".
But I got an error
Code:
CS0246: The type or namespace name 'Car' could not be found (are you missing a using directive or an assembly reference?)
Code:
Line 18: protected void Button1_Click(object sender, EventArgs e)
Line 19: {
Line 20: Car myTransport = new Car();
Line 21: Label4.Text = myTransport.Wheels.ToString();
Line 22: Label5.Text = myTransport.TopSpeed.ToString();
I guess the code files might be put the appropriate place.
Thanks for your help.