SanSYS

sansys.net: http://goo.gl/92CHdD

Mar 11th, 2015
2,176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. public class CustomDataHandler: UrlRoutingHandler
  2. {
  3.     protected override void VerifyAndProcessRequest(IHttpHandler httpHandler, HttpContextBase httpContext)
  4.     {
  5.         RouteData routeData = httpContext.Request.RequestContext.RouteData;
  6.  
  7.         httpContext.Response.ContentType = "text/plain";
  8.         httpContext.Response.Write(routeData.Values["dataKey"]);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment