2012-02-29 3 views

答えて

11

あなたはこのようにそれを行うことができるはず:

HttpContext.Current.Response.Clear(); 
    HttpContext.Current.Response.Status = "303 See Other"; 
    HttpContext.Current.Response.AddHeader("Location", newLocation); 
    HttpContext.Current.Response.End(); 
関連する問題