Asp.Net Programming Tutorial Assignment no 7 for Beginner

ASP.Net Tutorials and Assignment no 7 with solution. Get all the lectures for ASP.net Programming and learn from your end. The topic cover all the program related with ASP.net. College student will get all the solution for college assignment here. It is the latest 2016 ASP.net assignment for engineering college students. Solved assignment for MCA, BCA, MSCIT, BSCIT and many Engineering College student. Find Solved Programs here.

[LinkVer]

Must Read : How To Spy on Girlfriend / Boyfriend Whatsapp Account

Must Read: Install Whatsapp with Rooted Andriod Phone

Lecture 4

Asp.Net Programming Assignment no 7 – ASP Tutorial for Beginners

[ResponsiveRect]

Objective:

Create a web site and manage the Application state of your site also display the start date & time of web site.

Controls, Methods, Properties & Event Used:

  1. Application State
  2. Label

Output:

ASP dot net application state with date and time

Program:

[ResponsiveRect]

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class frmApplicationObjectExample :
System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = “Application has started at :” + Application[“starttime”].ToString();
}
}

Find More Tutorials Here

Find Tally Tutorial Here
Find Advance Excel Tutorial Here

Leave a Comment