here is my thread in asp.net web page (code behind) :
Thread my_thread = new Thread(delegate()
{
my_thread_method(params);
});
Timer1.Enabled = true;
my_thread.Start();
Now I want to access Timer1 in my_thread() and work with that timer.
How can i do that?
I also need to update some labels text inside thread, but I don't have access to them.
What is the solution?