Test.cs 390 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. public class Test : IHttpHandler
  6. {
  7. public bool IsReusable
  8. {
  9. get { return true; }
  10. }
  11. public void ProcessRequest(HttpContext context)
  12. {
  13. context.Response.RedirectPermanent("http://www.google.fr/", true);
  14. }
  15. }