2
Answers

Auto Shoot Email

How can i built a auto sent email for (employee) after 2 day's ,7 day's and Thirty day's ??
Answers (2)
1
Satyapriya Nayak
NA 53k 8m 12y
http://www.c-sharpcorner.com/uploadfile/ashish_2008/routing-in-Asp-Net4/default.aspx, http://www.c-sharpcorner.com/uploadfile/dhananjaycoder/step-by-step-walk-through-on-url-routing-in-Asp-Net-4-0/default.aspx
1
Satish Singh
NA 34 0 12y
hello Rajeev,


1. Create a class.

public static void MyRoute(RouteCollection route)
        {
            route.MapPageRoute("Home", "home", "~/HomePage.aspx");
        }
 
2. then add that class to Global.asax

 public class Global : HttpApplication
    {
        void Application_Start(object sender, EventArgs e)
        {
            MyRouting.MyRoute(RouteTable.Routes);
        }
}