I have created an ashx file to generate image thumbnails on the fly. I would like to cache these images client side after they are called the first time.
We have this code which serves a download: public class downloadRelease : IHttpHandler { public void ProcessRequest (HttpContext context) {
I\'m getting the an error at \"byte[] param = [...]\" from the following http handler. Other ashx files are working. Tell me if you need more info...
// test.ashx public class test : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = \"text/plain\";
I am having an issue with my ASHX handler that is generating PDF. When the user hits a \"View PDF\" button, it will look in the database for the PDF file and display it, but if there isn\'t a PDF fil
I\'m using MVC3 and want to create a route to an ashx file. I\'ve created an Generic Handler with this code in:
I want to get the rss feed of an ashx page to an EXTjs store. It works perfectly with a xml page. but when I test it on an ashx page it doesn\'t !!!
I am trying to save a user comment to my ashx web handler using jQuery post. The problem is that the form data does not seem to be posted, they got the value of Nothing.
I\'ve been playing with Valum\'s AJAX upload script: http://valums.com/ajax-upload/ It ticks all the boxes for me, not using the horrid swfupload flash object for one.I have the JS point at my .ashx
This is a Asp.net 3.5 Web Application I have a variety of data collections, like \"Featured Blogs\", \"Event List\", \"Top Events\" etc. About 5-10 in total.