-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am trying to send a large chunk of data over to a HTTP handler. I can't send it using GET because of the URL length limit so I decided to POST it instead. The problem is that I can't get at the values. context.Request.Form shows that it has 0 items. So is there a way that I can POST data to…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
A Book showed an example where ( when using IIS7 ) the following module was configured such that it would be used by any web application ( even by non-asp.net apps ) running on a web site. But:
A) if this module is invoked for non-asp.net application, then how or why would HttpApplication object…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
So i have a custom CMS running under .Net 3.5 written entirely in c#. The engine is optimized to render for mobile devices, but also server to normal web browsers. It also supports cookieless sessions. Great...
I've chosen not to cache anything (including browser data) in order to control the rendering…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My HttpHandler looks like:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/xml";
XmlWriter writer = new XmlTextWriter(context.Response.OutputStream, Encoding.UTF8);
writer.WriteStartDocument();
writer.WriteStartElement("ProductFeed");
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
If we use an aspx page with a Caching Profile, the server caches images that are loaded with the aspx page. So if ten clients load the same image through the aspx page (same url), for one client the image is gotten out of the db, for the nine others it is cached.
When we use a HttpHandler, this doesn't…
>>> More