The ASP.NET Tutorial Include 22 Lecture and 200 of ASP.NET Assignment for beginners who want to learn ASP.net programming. Solve Daily 1 ASP.Net Assignment and your will be ready within 2 month to build interactive website with this ASP.net tutorials. It’s the Latest 2016 ASP.net Lectures of all time. The ASP.net Tutorial and Assignments is available with the output and Program Code.
[ResponsiveRect]
Lecture 1
Asp.Net Programs Assignment no 1 – ASP Tutorial for Beginners
Objective:
Create a ASP Web Site to display Message as shown in output to Handling Events and Post backs property of Web page also display Current date & time in a label.
Controls, Methods, Properties & Event Used:
- Text Box
- Label
- Button
- Date Time ()
Output:
Program:
[LinkVer]
using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void btnSubmit_Click(object sender, EventArgs e) { lbMsg.Text = txtName.Text +" " + "Welcome To Saint Angelos"; lbldate.Text = DateTime.Now.ToString(); } }