Beispiel #1
0
 public void transfer_Request(string action)
 {
     action = action.lower();
     if (Server_Transfers.hasKey(action))
     {
         if (action == "teammentor")
         {
             tmWebServices.logUserActivity("Open TeamMentor", "The HomePage (ie. http://.../teamMentor)");
         }
         context.Response.ContentType = "text/html";
         Server_Transfers[action].siteData_Handle_VirtualPath();
         context.Server.Transfer(Server_Transfers[action], true);   // will throw "Thread was being aborted exception
     }
 }