How to Start with ASP.net ? Adding 2 numbers
- Mahesh Bhat
- Jul 8, 2017
- 1 min read
Hai , This blog gives u a complete detail about how to execute the ASP .NET ( for beginner )
Lets start .
I am using Microsoft Visual Studio 2008.
The Overview of the software
Click on Create Project
Then click on Visual C# -> Web -> Web application Type a related file name and save it in particular folder.
In design area , drag the necessary tools into form and change there properties in property area .

after designing the form , double click on button and write a necessary code to compute the adding procedure .
Add two number :
protected void Button1_Click(object sender, EventArgs e) { int a; a = int.Parse(TextBox1.Text) + int.Parse(TextBox2.Text); TextBox3.Text = a.ToString(); }
Click on debug button (if any error occures , correct it )
Now you will get the output design in browsers window.
THANK YOU ,

Comments