<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with httphandler</title>
    <description>the latest stories tagged with 'httphandler' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>ASP.NET Futures: Generating Dynamic Images w/ HttpHandlers Gets Easier</title>
      <description>I've done a lot of HttpHandlers that generate images. It's usually pretty tedious. When I was working banking, I wrote an example HttpHandler that would take two Check Images (back and front) and composite them into a single image on the server side, then serving up the composite. Usually you're messing around in with MemoryStreams and Images, and then you serialize the result out to the Response.OutputStream, making sure the MIME Types are set appropriately. If you're really clever, you'll remember to do some client-side and appropriate caching, but I rarely see that in the wild.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fASPNETFuturesGeneratingDynamicImagesWithHttpHandlersGetsEasier.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fASPNETFuturesGeneratingDynamicImagesWithHttpHandlersGetsEasier.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_Futures_Generating_Dynamic_Images_w_HttpHandlers_Gets_Easier</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_Futures_Generating_Dynamic_Images_w_HttpHandlers_Gets_Easier</guid>
      <pubDate>Sun, 24 Aug 2008 09:31:12 GMT</pubDate>
    </item>
    <item>
      <title>How to Send Trackbacks and Pingbacks in ASP.NET</title>
      <description>This is an excellent article from Keyvan Nayyeri showing how to create trackbacks and pingbacks in ASP.NET. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnayyeri.net%2fblog%2fhow-to-send-trackback-and-pingback-requests-in-asp.net%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnayyeri.net%2fblog%2fhow-to-send-trackback-and-pingback-requests-in-asp.net%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_Send_Trackbacks_and_Pingbacks_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_Send_Trackbacks_and_Pingbacks_in_ASP_NET</guid>
      <pubDate>Wed, 06 Aug 2008 21:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Writing SEO friendly url using HttpHandlers in ASP.NET</title>
      <description>In general it is recommend to not use querystring in the url as search engines doesn't rank those pages well and give very low priority. To avoid querystring there are several third party component that can be used like ISAPI, url rewriter. However in this article, I am going to show you how to rewrite url using ASP.NET built in HttpHandler. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetfunda.com%2farticles%2farticle75.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetfunda.com%2farticles%2farticle75.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Writing_SEO_friendly_url_using_HttpHandlers_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Writing_SEO_friendly_url_using_HttpHandlers_in_ASP_NET</guid>
      <pubDate>Mon, 14 Jul 2008 20:12:28 GMT</pubDate>
    </item>
    <item>
      <title>How to use the IHttpAsyncHandler in ASP.NET</title>
      <description>Basically, the IHttpAsyncHandler interface allows you to serve content asynchronously from a HTTP handler. This is great when you need to free up the worker thread to do processing like IO work etc. ASP.NET actually uses fewer threads when it runs asynchronously, which is great for performance and scalability. That's because each thread is returned much faster to the thread pool. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fHow-to-use-the-IHttpAsyncHandler-in-ASPNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fHow-to-use-the-IHttpAsyncHandler-in-ASPNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_use_the_IHttpAsyncHandler_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_use_the_IHttpAsyncHandler_in_ASP_NET</guid>
      <pubDate>Sun, 29 Jun 2008 20:21:17 GMT</pubDate>
    </item>
    <item>
      <title>CSS and JS compression through ASP.NET handlers</title>
      <description>In this article, I will discuss a technique for distributing compressed website assets (CSS and javascript files) using ASP.NET. Compressing these files reduces bandwidth usage, which means decreased costs on server traffic. (Take 10,000 viewers/users and up, and the savings become significant.) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.computerero.com%2faspnet%2fcss-and-js-compression-through-aspnet-handlers%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.computerero.com%2faspnet%2fcss-and-js-compression-through-aspnet-handlers%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/CSS_and_JS_compression_through_ASP_NET_handlers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/CSS_and_JS_compression_through_ASP_NET_handlers</guid>
      <pubDate>Thu, 28 Feb 2008 10:20:42 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandlers</title>
      <description>A pretty useable article on how to use HTTP Handlers and why not. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodebetter.com%2fblogs%2fkarlseguin%2farchive%2f2006%2f05%2f24%2f145397.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodebetter.com%2fblogs%2fkarlseguin%2farchive%2f2006%2f05%2f24%2f145397.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HttpHandlers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HttpHandlers</guid>
      <pubDate>Thu, 27 Dec 2007 01:31:02 GMT</pubDate>
    </item>
    <item>
      <title>SharpCacheSessionManager</title>
      <description>The SharpCacheSessionManager is a HttpHandler that allows to display the entries stored in the Cache, Session and Application object. You can view the data stored inside the objects and you can also remove the objects from the corresponding storage. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2faspadvice.com%2fblogs%2fazamsharp%2farchive%2f2007%2f10%2f11%2fSharpCacheSessionManager.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2faspadvice.com%2fblogs%2fazamsharp%2farchive%2f2007%2f10%2f11%2fSharpCacheSessionManager.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/SharpCacheSessionManager</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/SharpCacheSessionManager</guid>
      <pubDate>Mon, 15 Oct 2007 07:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Streaming a vCard on the Fly in ASP.NET with a Custom httpHandler </title>
      <description>To continue with my series on httpHandlers I want to cover how to stream a vCard to the user based on a parameter. First let me say that I grabbed the code for the .NET vCard class from a CodeProject.com article. There is also a corresponding vCalendar class. The idea behind a vCard is it is a standard format for sharing information about a person that can be imported directly to applications like Outlook. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2007%2f09%2f23%2fStreaming-a-vCard-on-the-Fly-in-ASP.NET-with-a-Custom-httpHandler.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2007%2f09%2f23%2fStreaming-a-vCard-on-the-Fly-in-ASP.NET-with-a-Custom-httpHandler.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Streaming_a_vCard_on_the_Fly_in_ASP_NET_with_a_Custom_httpHandler</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Streaming_a_vCard_on_the_Fly_in_ASP_NET_with_a_Custom_httpHandler</guid>
      <pubDate>Sun, 23 Sep 2007 21:25:06 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandler for Images in ASP .NET 2.0</title>
      <description>Http Handler:
Http Handler is a class that is responsible for rendering a particular resource, or a particular type of resource.

Http Handlers are somewhat similar to ISAPI Extensions. If implements, it behaves like a filter between Web Server and the Client. Whenever client makes a request to the server, it goes through the Filter and performs operations as per our requirement &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsunilksaini.blogspot.com%2f2007%2f05%2fhttphandler-for-images-in-asp-net-20_17.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsunilksaini.blogspot.com%2f2007%2f05%2fhttphandler-for-images-in-asp-net-20_17.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HttpHandler_for_Images_in_ASP_NET_2_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HttpHandler_for_Images_in_ASP_NET_2_0</guid>
      <pubDate>Mon, 06 Aug 2007 11:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Add variables to standard CSS stylesheets in ASP.NET</title>
      <description>Great way to be more dynamic with your stylesheets. Allows for more flexible website layouts based on dyanmic information. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.madskristensen.dk%2fblog%2fAddVariablesToStandardCSSStylesheetsInASPNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.madskristensen.dk%2fblog%2fAddVariablesToStandardCSSStylesheetsInASPNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Add_variables_to_standard_CSS_stylesheets_in_ASP_NET_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Add_variables_to_standard_CSS_stylesheets_in_ASP_NET_1</guid>
      <pubDate>Wed, 27 Jun 2007 06:31:01 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandler and &amp;quot;Save As&amp;quot; prompt</title>
      <description>Forcing an &amp;quot;open, save&amp;quot; prompt for known file types. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt_1</guid>
      <pubDate>Tue, 27 Mar 2007 14:42:19 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandler and &amp;quot;Save As&amp;quot; prompt</title>
      <description>Forcing an &amp;quot;open, save&amp;quot; prompt for known file types. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt_1</guid>
      <pubDate>Tue, 27 Mar 2007 14:42:19 GMT</pubDate>
    </item>
    <item>
      <title>HttpHandler and &amp;quot;Save As&amp;quot; prompt </title>
      <description>These days I work a lot with Reporting Services and an ASP.NET application which serve reports on an aspx page. The problem is pdf is a known file type so the browser open Adobe Acrobat instead of asking the user to save the file. I knew this is possible so I was happy to google and find this entry from Andrew L. Van Slaars. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2007%2f03%2f23%2fhttphandler-and-save-as-prompt.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/HttpHandler_and_quot_Save_As_quot_prompt</guid>
      <pubDate>Wed, 28 Mar 2007 04:16:01 GMT</pubDate>
    </item>
  </channel>
</rss>