public void ProcessRequest(HttpContext context)
        {
            String route_no=context.Request.QueryString["route_no"];
            String location = context.Request.QueryString["location"];
            String time = context.Request.QueryString["time"];

            CAdminBO BO = new CAdminBO();
            BO.AddRoute(route_no,location,time);
            context.Response.ContentType = "text/plain";
            context.Response.Write("200");
        }