document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Code Snippet from aperturescience.su
  2. <%@ WebHandler Language="C#" Class="GenericHandler1" %>
  3.  
  4. using System;
  5. using System.Web;
  6.  
  7. public class GenericHandler1 : IHttpHandler {
  8.    
  9.     public void ProcessRequest (HttpContext context) {
  10.         context.Response.ContentType = "text/plain";
  11.         context.Response.Write(context.Request.UserHostAddress);
  12.     }
  13.  
  14.     public bool IsReusable {
  15.         get {
  16.             return false;
  17.         }
  18.     }
  19.  
  20. }
  21. // Code Snippet from aperturescience.su
');