I need help understanding what goes into where in the .cs file when i am using Web Developer express 2010.
I am looking at an example on the W3 site where you enter your name and click submit and a label pops up and shows what you entered all server side. http://www.w3schools.com/aspnet/showasp.asp?filename=demo_textbox
I am trying to duplicate this on my site and I need to know where the text in blue (looking at the link above) goes in the .cs file (assuming it goes in there).
Here is what my .cs file looks like
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Assignment2
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
Where should I put it? Thanks for any help!!!!!!!!