Subhash Sharma

Subhash Sharma
Subhash Sharma

This is Subhash Sharma(Software Engineer) Blog

Welcome to this blog and find every solution.............

Search This Blog

Software Engineer(Subhash Sharma)

Software Engineer(Subhash Sharma)
Software Engineer

Thursday, March 18, 2010

Number of user visit to your Website

//Take global.asax for make application level variable

void application_start(object sender,Eventargs e)
{
int count=convert.int32(application["hit"]);
count=0;
}

void session_start(object sender,eventargs e)
{
int count=convert.toint32(application["hit"]);
count=count+1;
application["hit"]=count;
}

//pageload

label1.text=convert.toint32(application["hit"]).tostrng();

No comments:

Post a Comment