Tagged Questions
The response.write tag has no wiki summary.
10
votes
2answers
313 views
Sending ICalendar event to client while still continue running your code
I have built a basic calendar event using DDay.iCal, when I click "Add to calendar" link I produce an event and then sends this to the client.
Basically, my application works like this.
A User logs ...
6
votes
4answers
3k views
ASP.Net MVC 3 Razor Response.Write position
I am trying to update this tutorial on implementing Facebooks BigPipe to razor.
There is a html helper extension that adds a pagelet to a list, and then outputs a holding div to the response. The ...
6
votes
4answers
2k views
How do you provide JSON response data in .NET?
Without using any third party tools, what is the ideal way to provide JSON response data?
I was thinking of having an ASPX application page to just return the json string response. Any ideas?
5
votes
3answers
3k views
What’s the difference between Response.Write() and Response.Output.Write()?
What’s the difference between Response.Write() and Response.Output.Write()?
4
votes
1answer
526 views
How could I insert a string into the response stream anywhere I want?
There may be an easy way to do this but I can't see it...
I created a simple Http Module that starts a timer on the PreRequestHandler and stops the timer on the PostRequestHandler to calculate the ...
4
votes
1answer
694 views
ASP.net memory usage during download
On an ASP.net site at my place of work, the following chunk of code is responsible for handling file downloads (NOTE: Response.TransmitFile is not used here because the contents of the download are ...
4
votes
2answers
1k views
Using updateprogress while generating a file with Response.write in ASP.NET
I am creating an Excel file with Response.write in my C# file and it takes 1-2 mins to create the file. I would like to make use of UpdateProgress to indicate that the file generation is in progress. ...
3
votes
4answers
395 views
Why Response.Write behavior varies in the given scenario?
When i POST the page using the following code, the Response.write("Hey") doesn't write the content ("Hey") to the parent page
<form method="post" name="upload" enctype="multipart/form-data"
...
3
votes
5answers
1k views
Read Response.write in another Page
I have a page www.senderdomain.com/sender.aspx, from which i need to write a string to another page in other domain www.receiverdomain.com/receiver.aspx
In sender.aspx i have written
...
3
votes
2answers
2k views
Cannot use Response.Write in <head> section of aspx page?
I'm trying to use the Response.Write() method to dynamically insert content in the < head > section of an aspx page. I need to inject a string value from a property on a code-behind object which is ...
3
votes
1answer
512 views
What is the practical difference between Response.Write and <%= %>?
I've run into an issue where a third-party component appears to be interfering with Response.Write and causing any content within Response.Write("") to render before any of the other html. For ...
3
votes
6answers
1k views
HttpResponse substituting underscores for spaces in file names
When downloading a file with Response.Write spaces in the file name are replaced with underscores, and when the associated application opens, a number in square brackets is appended:
...
2
votes
3answers
210 views
Connection lost with response.end in node.js
I'm using node.js to have multiple clients. Now, in my code, I'm listening on a port and each time a client connects, I want to send out a broadcast message to all other clients, say. I'm raising a ...
2
votes
4answers
133 views
cant get c# to make a downloadable csv
I am having to code up a button which, onclick, downloads a csv file onto the client's computer (this is a web app)
So, did some research, pulled all strings together, go figure, its not working.
I ...
2
votes
2answers
110 views
ASP.net shorthand in TextBox
I am trying to do the following:
<asp:TextBox ID="txtName" runat="server" Text="<%= Name %>" />
When I execute my page it gets output as <%= Name %> instead of actually doing a ...
2
votes
2answers
448 views
response.write failure in Nodejs
i am trying to make a proxy server that gets a page from "www.xxx.com" for example, cache the response, and then send it to the requesting browser.
To do so, in the server i create an httpClient that ...
2
votes
1answer
396 views
Wrong encoding by response.write
I have a string in a web application
The string is like this :
`1234567890-=[]\ ;',./\~!@#$%^&*()_+{}|:"<>?|
after encoding (by using Server.Encode() ) it show the following :
...
2
votes
2answers
330 views
response.write only working IE for ASP.NET
I'm using uploadify (http://www.uploadify.com/) to upload video to my site then convert them into *.flv using ffmpeg and play preview. But it dosen't fully working with firefox, chrome or safari.
...
2
votes
2answers
2k views
How to add encoding information to the response stream in ASP.NET?
I have following piece of code:
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/rtf; charset=UTF-8";
context.Response.Charset = "UTF-8";
...
2
votes
3answers
7k views
Response.Write DataTable Data to Text File, ASP.net Hangs
Very odd problem as this is working perfectly on our old Classic ASP site. We are basically querying the database and exporting around 2200 lines of text to a Text File through Response.Write to be ...
1
vote
1answer
29 views
ASP.Net Download file to client browser
I'm writing a simple test page to download a text file to a browser on button click. I am getting a really strange error that I have never seen before. Any thoughts?
The error occures on ...
1
vote
1answer
94 views
.NET 4.0 Page.Response.Write vs <%= %>
I have some UserControls in a webpage. When I use it in the ASPX code of my UserControl
as such <div><% Page.Response.Write("<a href='http://www.microsoft.com'>test</a>") ...
1
vote
1answer
175 views
Response.Write output in code block is appearing outside html
Putting aside any debate about whether you should even use Response.Write in the HTML portion of an .aspx, in a project I am working on variables from the code behind are being displayed on the ...
1
vote
0answers
60 views
Display Images MHTML
I have a byte array of MHTML. When I do a Response.BinaryWrite in the Page_Load event, it displays fine. When I do the same in a button click event, the images do not display. I looked at the HTTP ...
1
vote
1answer
98 views
Style attribute not appearing
I am displaying an image within each itme of a ListView. I want the image to be centered horizontally as well as vertically in a box. My code is as follows:
Protected Sub ...
1
vote
2answers
178 views
Response closes after export document
I have been trying to export a Word document into Response using ASP.Net. So I achieved this goal with this code.
Response.Clear();
Response.ClearHeaders();
Response.ClearContent();
...
1
vote
4answers
242 views
why Response.Write destroy align of the whole page?
My application use a masterpage which the ContentPlaceHolder align is center. But whenever, I use Response.Write() function to write something on screen, the whole page just changed to align left. ...
1
vote
3answers
597 views
How to handle jSON XMLHttpRequest response?
I'm trying to control the json response I send back to the client but didnt know exactly how..
Here is a simple demo:
js code
xhr = new XMLHttpRequest();
xhr.open("POST", "page.aspx", true);
...
1
vote
1answer
1k views
Show Response.Binarywrite in browser save dialog or open new window and close after save
My problem looks like this.
I have a grid with documents (Id's). Now when somebody clicks at a row I would like to allow him to download or show that document. But to make it esier let's say that I ...
1
vote
5answers
234 views
Response.Write Output Problem
I cant figure out why when I try to output an image and a line of text below I only get the image what Am I doing wrong?
SqlConnection cn = new SqlConnection("CONNECTIONINFO HERE");
...
1
vote
2answers
223 views
Is Response.End() mandatory in the given scenario?
string filePath = ExportAndSaveInvoiceAsHtml(invoiceId);
Response.AddHeader("Content-Disposition", "attachment;filename=" + Path.GetFileName(filePath));
Response.WriteFile(filePath);
// Using ...
1
vote
5answers
614 views
OutOfMemoryException when creating huge string in ASP.NET
When exporting a lot of data to a string (csv format), I get a OutOfMemoryException. What's the best way to tackle this? The string is returned to a Flex Application.
What I'd do is export the csv to ...
1
vote
1answer
400 views
Play streamed audio in browser (Asp.net)
I am trying to get this to work for quite some time now. I have an asp.net page in which I am trying to play a wav file. The code in the page load event is as follows:
Response.Clear()
...
1
vote
0answers
210 views
LINQ to SQL Binary data in chunks?
I have a ASP.net MVC webpage, that has a custom document repository in it. The document are stored in a Sql Server 2008 Filestream Filegroup. I am using LINQ to SQL to access the database, then ...
1
vote
2answers
122 views
Appending to BODY element
Just before (or during) rendering page I would like to append a piece of code (java script). However when I try to add new LiteralControl via Page.Controls property I get an error:
The Controls ...
1
vote
4answers
979 views
Do I need Response.End() in ASP.Net 2.0
I am just starting with ASP.Net. I copied a ex-co-worker's code (from .Net 1.1 era) and it has a Response.End(); in case of an error. There is also a:
catch (Exception ex)
{
...
1
vote
2answers
477 views
Gets Error while i write Response.write() on click event of button
Sys.Webforms.PageRequestManagerParserErrorException: The message received
from the server could not be parsed. Common causes for this error are
when the response is modified by calls to ...
1
vote
3answers
1k views
Response.WriteFile with a URL possible?
I would like to be able to do this:
Response.WriteFile ("http://domain/filepath/file.mpg")
But, I get this error:
Invalid path for MapPath 'http://domain/filepath/file.mpg'
A virtual path is ...
1
vote
3answers
162 views
Response.Write or plain ol' HTML
What is better coding practice, with speed in mind (Classic ASP):
sPg=sPg& "<select id=""actions"" onchange=""emact(this.value)"">"
sPg=sPg& "<option value=""""></option>"
...
1
vote
1answer
798 views
WCF Service returning Response.Write
I have a WCF service that will be called from a HTML form located in the customer's network.
When the same form is posting the exact same data to an ASP page it expects a response like:
...
1
vote
1answer
1k views
C# - Stream a PDF using Response.TransmitFile() or Response.WriteFile() And then select a page
I want to stream a pdf from a directory on the server using an ASP.NET page. This works fine. The catch is that I want to pass Adobe Open Parameters to land on a specific page.
Adobe has parameters ...
1
vote
1answer
84 views
What is the minimum amount of HTML an UpdatePanel requires before it falls over?
If for instance, I was to give a response back to an ASP.Net Update Panel page, but use Response.Write and then end it before anything was rendered, what is the minimum I would need to write in the ...
1
vote
1answer
839 views
Refresh UpdatePanel after a “File Download” dialog Box
I have a User control inside an Update Panel. I trigger a Export to excel from inside this user control on button click. Everything works fine. I get the File Download box. When the "File Download" ...
1
vote
3answers
1k views
How do I override page load lifecycle in ASP.NET to prevent ASPX form from loading?
I need to test a condition in several ASPX code-behind files and, in some cases, would like to completely bypass the normal page load process so that the corresponding ASPX page is not loaded. ...
0
votes
1answer
40 views
Response.BinaryWrite not working with Safari in MAC
I'm using the following code to send a PDF to the browser
Response.ClearContent();
Response.ClearHeaders();
Response.AddHeader("Content-Length", fileBytes.Length.ToString());
...
0
votes
2answers
66 views
Response.End doesnot render javascript
On the click of the button my Onclick event gets fired.
Inside the onclick event I generate somefile at runtime and render it to the browser in the following way. But before rendering it to the ...
0
votes
1answer
103 views
Response Writefile isn't creating a PDF when using Chrome
I'm using the following code to send a PDF to users to open/download. This works fine in IE9. Any ideas why it won't work in Chrome?
Response.Clear();
Response.AddHeader("Content-Disposition", ...
0
votes
2answers
167 views
Response.write with classic ASP page on IIS7
The following statement will not work with a classic asp page on an IIS7 website
<% Response.Write("test") %>
0
votes
3answers
205 views
how to write a file object on server response and without saving file on server?
I am using Spring with DWR . I want to return a file object as response , however I save the file (to be sent) at server temporary location and then send its location as href for anchor tag on client ...
0
votes
1answer
57 views
Implement .net mvc BeginLabel like BeginForm response.write issue
I have a requirement to roll my own BeginLabel helper for Mvc. I checked/stole the concept from the Mvc source for the html.beginForm / ajax.beginForm methods.
public static Label BeginLabel(this ...