Hi,
I have a Global.asax file in which a function calls a my_method at given time interval. In this method I want to open a web page, how can I do this?
My code is like this:
void Aplication_Star t(object sender,EventArg s e)
{
....
my_method();
}
public static void my_method()
{
//Here I want to write code for calling web page.
}
Pls tell if any idea.
Thanks
I have a Global.asax file in which a function calls a my_method at given time interval. In this method I want to open a web page, how can I do this?
My code is like this:
void Aplication_Star t(object sender,EventArg s e)
{
....
my_method();
}
public static void my_method()
{
//Here I want to write code for calling web page.
}
Pls tell if any idea.
Thanks
Comment