Subject: Beginning ASP.NET 2.0 with C# - Chapter09 pg 295
Posted By: tbroom Post Date: 9/1/2006 2:08:39 PM
Beginning ASP.NET 2.0 with C# - Chapter09 pg 295

Try it out: Step 4: Double-click the button to create the code-behind file and the button click event

This is done and I am getting:
Partial Class SimpleTypes
    Inherits System.Web.UI.Page

    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click

    End Sub
End Class


When I look the END Chapter09 SimpleTypes.aspx.cs file I am seeing something like this:
using System;

partial class SimpleTypes : System.Web.UI.Page
{
    protected void Button1_Click(object sender, System.EventArgs e)
    {
        Label1.Text = TextBox1.Text + TextBox2.Text;
        Label2.Text = DateTime.Parse(TextBox3.Text).ToString("dd MMM yyyy");
        Label3.Text = DateTime.Parse(TextBox3.Text).ToString();
    }
}

What is causing me to see something completely different?

Also I noticed that when the button was added and I compared it to the file in the END Chapter09 directory they were not the same

I had in my SimpleTypes.aspx file:
<asp:Button ID="Button1" runat="server" Text="Button" /></div>

END Chapter09: had in its file SimpleTypes.aspx
 <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /></div>

Should there not be a step indicating one needs to add an Event to the button selecting the action “Click” and adding “Button1_Click”?


Reply By: RobC Reply Date: 9/1/2006 2:35:09 PM
Your code behind file is in VB.

Try recreating the page and specifying C#.

Go to topic 49185

Return to index page 186
Return to index page 185
Return to index page 184
Return to index page 183
Return to index page 182
Return to index page 181
Return to index page 180
Return to index page 179
Return to index page 178
Return to index page 177