The response.write tag has no wiki summary.
3
votes
1answer
7k 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 ...
4
votes
1answer
1k 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 ...
6
votes
3answers
4k views
What’s the difference between Response.Write() and Response.Output.Write()?
What’s the difference between Response.Write() and Response.Output.Write()?
1
vote
1answer
694 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 ...
0
votes
0answers
64 views
How to not alter font in webpage after opening a pdf in ASP.NET C#?
Previously I posted this question:
How to open files from a specific route in ASP-NET c#?
in fact, I have already asked this however it was only a minor question so I guess it wasn't that important ...
12
votes
4answers
10k 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 ...
2
votes
5answers
1k 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 ...
0
votes
3answers
4k 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 ...
1
vote
4answers
3k views
Response.Write and UpdatePanel
I generate a vcard that I send to the client using the following code snippet:
Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}", fileNameOnly));
...
0
votes
2answers
204 views
Response.WriteFile() — not working asp net mvc 4.5
I've looked at many resources and the following should work, however my save as dialog box is never showing (not browser specific):
Response.ContentType = "application/octet-stream";
string ...
0
votes
1answer
125 views
Limit of 88 bytes on response.write?
I am trying to serve a csv file from a wcf service, as a string response.
It looks like this:
HttpContext.Current.Response.AddHeader("Content-disposition", "attachment; filename=ImportErrors.csv");
...
0
votes
2answers
600 views
ASP.NET Write out contents of HTML file?
I don't know if this is a stupid question but..
Is it possible in either ASP.NET (either C# or VB#) to Response.Write() the contents of another HTML file? If so, how?
0
votes
3answers
4k views
positioning the output of response.write in asp.net C#
i am trying to postion the output to my aspx page by using response.write for that i am using this code:
Response.Write("<<span id='Label1'' style='height:16px;width:120px;Z-INDEX: 102; ...