ASP.NET Web Handler file extension
0
votes
0answers
10 views
ASHX file could not create type - running as Application in ISS Express
I have been trying to get a demo of jQuery File Upload working and have been faced with an error for the last couple of hours that I just can't shake. The "could not create type 'namesapce.myHandler'" ...
0
votes
2answers
57 views
How to pass querystring or hdnfield value to handler..?
I'm using a handler for my page and I want to pass value of querystring or hidden field on the page to the handler. and my handler code (Process Request Method) in separate file which is upload.ashx ...
0
votes
0answers
15 views
Document Download does not work when content is being served via HTTPS on C# .Net
I have an ASHX which I use to render a document. The initial issue was that I couldn't get the docx file to stream and I'm just getting a javascript error ("An invalid character was found in text ...
0
votes
0answers
8 views
Unable to load generic handler ASHX in IIS7.5
The error is Could not load type 'MyNamepsaceB.MyHandlerB'.
I have a default web site with two web applications beneath it, webappA and webappB. Each webapp has its own associated Virtual Folder. ...
0
votes
1answer
38 views
IE Ajax not working properly, get different value between jQuery.Ajax and ashx browser result
I have an Ajax call via JQuery.Ajax, Chrome and Firefox works fine. but for IE it is not working properly. Following screenshot is what I have in IE Debug:
On the right side the data shows the JSON ...
0
votes
1answer
17 views
Max message size over the wire?
I have a file input field that base64 encodes a selected image to be sent to my handler (IHttpHandler).
What is the maximum or how do I found out what the maximum request size I can send to my ...
0
votes
0answers
36 views
Serving pdf in iframe giving Cross Domain Error
im serving a pdf file in my application in an iframe through an ashx handler, the pdf is on my domain but when i try to access the elements of the iframe like
...
0
votes
1answer
63 views
Is it possible to put HTML in an ASP.NET .ashx file?
I am wondering it is possible to place html/javascript/etc in a .ashx file. I tried doing this, and I am getting the error "A namespace cannot directly contain members such as fields or methods"
The ...
1
vote
1answer
66 views
How can I call a method that's defined in an Http Handler file (.ashx) in my controller (ASP.NET MVC)?
I am completely new to .ashx and Http Handlers. But, what I want to do is call a method that's defined in my .ashx file from within my controller.
For example, I have my .ashx defined as follows:
...
0
votes
0answers
26 views
asp.net + form post within a masterpage
I am using a photo uploading plugin which requires to do a form post to a .ashx but the problem is it's sitting inside a masterpage which already has a form tag specified therefore will fail to work, ...
0
votes
1answer
143 views
C# Displaying Image from Database
I am having some issues displaying an image from a SQL Server database in a .NET application using C#. I've got the save part of the image working and it is storing the image as a series of byes in ...
0
votes
1answer
84 views
How to download a blob of random file type in C# using a generic http handler
My dilemma is that i need to retrieve the blob data stored in a table in oracle. I have created links with the data using jquery that link to a generic http handler blobHandler.ashx where i query the ...
0
votes
1answer
158 views
jquery ui autocomplete values not being displayed in textbox
am working on a JQuery UI Autocomplete widget that connects to a Google Search Appliance I have tested the widget using both Fiddler and Visual Studio 2010 inbuilt testing tools and can verify that ...
0
votes
1answer
93 views
jQuery autocomplete not works with remote data from ashx
I use a jQuery autocomplete with an ASHX as source. But every request throws an error with number 200.
My JavaScript:
$(function () {
$('#username input[type = "text"]').autocomplete({
...
0
votes
2answers
55 views
Download file from server
I have an ASP.NET/C# page. It basically has a textbox to accept user input. The data is processed on the server and a file is generated and saved.
Initially I transmitted the file to the client using ...
1
vote
1answer
85 views
Generic handler parameter size limit?
I have some JavaScript code which generates a very long script and than posts it back to the server to a generic handler for creating a csv.
My JavaScript Code for sending the data is:
function ...
2
votes
1answer
98 views
ExtJS: Response of too fast handler sometimes fail
I have a strange problem, that appears not always, but sometimes with the same request.
On my website (localhost) I have an ExtJS store with autoloading, and after page load (pushing F5 button) it ...
0
votes
1answer
76 views
PreviousPage in .ashx handler
Is it possible to retrieve the equivalent of Page.PreviousPage within a generic .ashx handler, following a cross-page PostBack from an .aspx page?
I need to access some POST values from the Page ...
1
vote
2answers
130 views
FormsAuthentication.SetAuthCookie in Generic Handler ashx
I have an Generic Handler where I would like to auto-login based on some querystrings.
But then I set FormsAuthentication.SetAuthCookie(user.Name, false), but ...
1
vote
1answer
78 views
Cannot call handler ashx more than once when using Response.TransmitFile
I've created a HttpHandler (.ashx) for clients download content (videos) from my website. First I was using the WriteFile method, that I realized it was requiring to much memory and then I decided to ...
0
votes
0answers
54 views
Ashx request sometimes return text sometimes initiates download of file
I am making a call to an ashx page called CheckAlive.ashx. This page will return "Connected" or "Offline" depending on the state of the application. When I initially made the get request to the page ...
0
votes
1answer
203 views
Add margin to PDF footer when using wkhtmltopdf
I am using wkhtmltopdf to create pdf documents on the filesystem.
The PDFs generate fine when I insert arguments like this:
psi.Arguments = "- --footer-html "http://localhost/pdf/footerpage.html" ...
-4
votes
2answers
233 views
How to call Handler (.ashx) from Jquery?
I have a HTTP handler (.ashx) which generates some html code from database and I want to call it from my Jquery function and pass a value (userID).
I am not sure how to call it and retrieve its data.
...
-1
votes
3answers
255 views
C#: Can't debug ASHX handler
I have an ASP.net C# 4.0 website project. I am calling an ASHX handler using a jQuery AJAX postback. Normally when I debug C#, I use this method Debug > Attach to Process > select w3wp.exe and start ...
0
votes
0answers
109 views
serving image with ashx - wrong mime type
I have the following .ashx code that works fine locally when running in IIS express. But when pushed live instead of serving an image it's giving me the following message. - "Resource interpreted as ...
0
votes
1answer
273 views
How to pass string value from javascript to function in ASHX
I'm used this code to pass parameter from jQuery to ASHX, actually I want to upload file using Uploadify Plugin and send Parameter named 'Id' to ASHX
function CallHandler() {
$.ajax({
...
1
vote
4answers
484 views
Cannot read file uploaded in c# handler
I'm trying to upload a file to a handler in c# but it seems as though the file is not getting uploaded. Calling Request.Files["fileNameHere"] returns null
My html code:
<form ...
0
votes
0answers
108 views
generic handler ashx bind vars instead of string concatenation for SQL
I have a C# ashx handler I am running into issues with, i have two queries that build on top of each other, the first query takes a parameter, while the second query takes the original query, wraps ...
-2
votes
1answer
394 views
What is the difference between ashx, asmx, axd + cs(handler), webmethod(in aspx) and async methods in asp.net framework 4.5? [closed]
I need to know the technical difference of those files. Which one is the best option?
When and why should we use it?
I need a human answer, not the MSDN links.
0
votes
0answers
173 views
Calling a handler (ashx) from within a webservice
I am trying to execute a handler (ashx) from within a web service by using HttpWebRequest. The handler doesn't execute. Please see sample code below. Is this the correct way to invoke a remote call to ...
1
vote
0answers
168 views
ASHX file Parser error - could not create type
I got a sample application to install on IIS from a vendor that I am testing for making barcodes.
The aspx pages work fine, but when the aspx page calls the ashx page, I get the error below:
...
0
votes
1answer
447 views
PDF Handler : content-disposition filename
I am outputting a PDF file in a Web browser (IE8) HttpContext.Response.writefile(fileName) and it works great. When I try to save the file, it will give me the name of the ashx handler as a default. I ...
0
votes
0answers
196 views
after saving data (json format) via ashx handler, trying to write data to the page
I am trying to save data (json formatted). html->js->ashx.
The data is saved, but after it is saved, I get this value from DB, that indicates wether the save was succesfull, or not. The problem is, ...
0
votes
1answer
35 views
NHibernate with ASHX and TransactionScope
Have a IHttpModule setup to open and close, begin and commit NH isession and transaction etc.
Have a piece of code in a ASHX handler similar to this, that is called by some ajax:
using (var ...
0
votes
1answer
181 views
ashx Handler not behaving as expected
I have an issue with my ashx handlers which are triggered via an update panel postback and a javascript call.
Long story short, there are two handlers in the application. Regardless of what URL I ...
2
votes
1answer
224 views
How can i check if image exists in image control which is using handler to display image
Handler:
-------
enter code here
public class Handler2 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
string id = context.Request.QueryString["Id"];
...
0
votes
0answers
55 views
IRequiresSessionState in Windows Phone internet explorer
I have ASP.NET website that checks rights to access some files with ashx handler. So i give the user link to ashx and the handler checks if session was created and there are some values in it - it ...
0
votes
2answers
962 views
how to call ASHX handler and getting the result back
I have created a Handler which return integer value after doing some database work. i would like to know how can i get that value and assign that value to Label by calling that handler.
I have ...
0
votes
2answers
320 views
asp.net C# download file in ashx from external link
need some help in downloading file with ashx
i'm trying to download large file (about 2-4GB) from external link (file not stored on webserver)
here is my code
context.Response.Clear();
...
0
votes
1answer
224 views
Proper way to use Context.Response.Write() on a very long Json string
i am using iis and asp.net with c#,
i have a json string which i build using JavaScriptSerializer, with MaxJsonLength set as Int32.MaxValue, now i want to return this using response.write, like this ...
1
vote
2answers
494 views
How to access session in aspx that was modified in ashx?
I am using uploadify to upload files, they automatically post to the handler. I then modify the session in the handler that I have setup as a static property in a common class of the website. I then ...
0
votes
0answers
107 views
Ashx request returns 401 on IIS
We have an ashx handler on a different application and we want to fetch data from it in our application. We use WebRequest object to make request to that handler. We use Windows Authentication in our ...
1
vote
1answer
102 views
LINQ to SQL how to use it in .ashx file to generate json?
I have some problem to Figure out how to use LINQ to SQL in .ashx file to generate json?
I am able to generate json using this code but I need to select TaskName and createdOn columns. can someone ...
0
votes
1answer
134 views
Cache an object in a .ashx handler
I'm not sure of the best way to approach this, but here is my scenario.
Let's say I have an ashx handler that feeds out some data to an ajax request from the client. Something simple like:
public ...
0
votes
1answer
109 views
Pass A Javascript Object Into .ASHX
I have an object I built in Javascript that I want to pass into a .NET .ASHX file and then parse out the various object properties.
Here is the object I built in Javascript:
function ...
2
votes
3answers
133 views
How to run a custom System.Attribute over an ashx file
Normally, on a usual aspx file, I can use System.Attribute at the begining of the page, like:
[AuthorizePage()]
public partial class _Default : System.Web.UI.Page
{
protected void ...
0
votes
3answers
398 views
how to get Physical path of working folder in javascript or jquery?
How to get Physical path of working folder in jscript or jquery?
What i need is when a dropdown is selected or if a button is clicked i need to get complete path of the working folder.
ex:
...
0
votes
0answers
96 views
Php showing image returned with ashx file
I am using curl to get data from a URL theweb/
On this page there are links which contain the details on a page for example if you open this page Details.aspx?bi=160507 you can see the details.
...
0
votes
1answer
122 views
How can I apply CDATA in XML for webservices in asp.net
how can i apply CDATA here in such XML of web services in asp.net...as in data i have some symbols like '&', which resist me to parse it to android. Plz help me, i have tried alot on internet, ...
0
votes
3answers
69 views
Test for valid JSON in .NET
Is there a way in .NET that I can test if a JSON string I am about to send back to the client is valid? I am using an ASHX handler that accepts a bunch of form variables and returns a chunk of JSON ...




