Application["hitcount"]=(int)Application["hitcount"]+1;
Nitha Deepak
Regards, Susan
Thanks & Regards; aaa
void Application_Start(object sender, EventArgs e) { // Code that runs on application startup Application["hitcount"] = 0; } . . .
Application["hitcount"]=Application["hitcount"]+1;
var views = Session["views"] = 1; pageviewslbl.Text = "No Of Views:" + Session["views"].ToString();
Application["hitcount"]=Application["hitcount"]+1; pageviewslbl.Text=Application["hitcount"].ToString();
void Application_Start(object sender, EventArgs e) { // Code that runs on application startup Application["hitcount"] = 0; }
protected void Page_Load(object sender, EventArgs e) { Application["hitcount"] =(int) Application["hitcount"] + 1; pageviewslbl.Text ="No Of Views : "+ Application["hitcount"].ToString();
Login to post response