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:
- Application State
- Label
Output:
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