In my code 1 button is there which has a huge code which takes too much time to execute,so i want to display processing status on web form,i used timer control but that will be not used with session variables.Please suggest. My code is quite like this-
protected void Button1_Click(object sender, EventArgs e)
{
for(i=o;i<100;i++)
{
label1.Text=" "+ i + " th processing start";
//code execution
label1.Text=" " + i + " th processing complete ";
}
}