0
votes
1answer
29 views
jQuery to bind data to ASP.NET DataList using a ashx handler
Using jQuery how do I bind data from a call to a asp.net ashx handler to a datalist?
2
votes
1answer
108 views
ASP.NET - Display Images and pdf in a GridView
I want to display in an asp:GridView an "Images" column. The idea is to provide a thumbnails of the image with link to real size image. For some rows, this may alternatively be a PDF document. I'd …
0
votes
1answer
36 views
HTTP Handlers: When to use Synchronous/Asynchronous/Generic handlers (ashx)?
Hi,
ASP.NET offers 4 types of http handlers - synchronous, asynchronous, generic synchronous (ashx) and generic asynchronous (ashx) handlers.
How do you choose the type of http handler to use for a …
0
votes
1answer
59 views
Is the default ASHX handler mapping missing from IIS 7.5 (Windows 7)?
I have an application that makes use of the default ASP.NET HTTP handler extension, .ashx. This no longer works in IIS 7.5. I get a 404.3 message with instructions to add a handler.
I used the …
1
vote
1answer
119 views
.ashx ASP.NET Handler Image not displayed in html img-element
Hi,
I have a strange problem.
I created an ASP.NET Handler (AccidentMap.ashx) that gets a bitmap and returns it.
Here is the handler:
using System;
using System.Collections.Generic;
using …
0
votes
1answer
28 views
httphandler filetype mapping requires virtual directory (or does it?)
I am using an httpHandler to pass all requests for *.gif files to an ashx handler. i only want to do this for requests to a sub-folder within the website. The website root is called 'demo' and the …
2
votes
3answers
91 views
How do you render a User control from a ashx or webservice?
Question is it possible to have a .ashx or webservice return a user control rendered? if so how would i do this?
0
votes
1answer
51 views
ASP.NET Javascript Resource Handler
I would like to make a Handler that takes all of my Javascript files i need and compresses and merges them, something like the scriptmanager of asp.net does.
Is this possible? i thought on an .ashx …
0
votes
2answers
107 views
ASPX or ASHX as ajax server page ?
Whats best in terms of performance/speed when considering a ASP.NET ajax server page which returns results back to the ajax calle in the javascrit ? an ASPX file or ASHX ?
0
votes
1answer
68 views
Calling GetWebResourceUrl from .ashx
Is it possible to get a web resource from an .ashx handler? We have resources (images) in a class library and would like to reference them from an ashx handler. Normally you get the url by doing …
0
votes
2answers
135 views
ExtJS combobox jsonDataStore
var remoteLookupJsonStore = new Ext.data.JsonStore({
root : 'records',
baseParams : {
column : 'fullName'
},
fields : [
{
name : 'name',
mapping : 'fullName'
},
{
name : 'id',
mapping : 'id'
…
0
votes
2answers
247 views
ASP.NET C# - Create upload directory on the fly?
public class UploadHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
...
// Create the directory if needed...
if …
0
votes
1answer
198 views
How to prevent ashx from resetting Session Timeout?
I'm having trouble finding any info on this, which makes me think I'm doing something wrong. I've made an ashx that serves up secured images to our logged-in users. The problem is that a Sql …
0
votes
1answer
192 views
Visual Studio ASHX files debugging
I have a ashx file in a non web project in VS2008. The type of web project (stsdev that is used with Share Point) deploys the ashx file to the server. I can navigate to the file and it is there. In …
0
votes
2answers
127 views
How can I make a VERY simple web proxy using ASP.NET?
I'm about to launch a site that was working well until I found the following hiccup:
I can't request a Yahoo! Pipe over SSL.
So the pages that require SSL are now missing a piece of their …
