Tagged Questions
0
votes
0answers
28 views
Response.Write on shared hosting
On my asp.net site, I build about 2-3 MB csv file and then try to send it as Response, so I do:
StringBuilder sb = new StringBuilder();
sb.AppendLine("Name\tType\tNumber\tStatus");
...
0
votes
0answers
37 views
file download using C# and ASP, issue in mobile web browser testing
I am trying to build a web page that downloads a video file, its working but I have issues in my android smartphone. having 2 forms: Index and frmDownloadFile
Index.aspx
public partial class ...
2
votes
4answers
100 views
Ajax response data in .net
I have a asp .net web page and a button in it. I'm calling an ajax method in the button click event as follows
$("#btnTest").click(function () {
$.ajax({
type: ...
0
votes
1answer
37 views
Thread was being aborted in form.Render(HtmlTextWriter writer)
I am using form.Render method for some working.
Some times it troughs an error.
Message
System.Threading.ThreadAbortException: Thread was being aborted.
at DTrnsForm.Render(HtmlTextWriter writer)
...
0
votes
1answer
65 views
Why is my server code ajax call returning a response wrapped in double-quotes?
I am doing an ajax call from my javascript to an aspx page's webmethod. The string I'm returning is wrapped in double-quotes for some reason. I tried stripping them out, but the replace only replaced ...
0
votes
0answers
66 views
Response.WriteFile not firing EndRequest event
The page I'm working on has existing loading message logic using PageRequestManager's beginRequest and endRequest. I'm adding a popup that allows the user to download a file using ...
3
votes
3answers
48 views
Variable reverting to initialised value
In the following I've taken out irrelevant code. I've created a field called printString. The calculateButton_Click method does a heap of stuff, then I want to send it to a print-friendly page using ...
2
votes
3answers
35 views
Response method which is provided by the page class?
I need to create a button that will be offered to generate a printable invoice. This will reformat the webpage specifically for printing the buying tickets information.
I am only allowed to use one ...
0
votes
2answers
59 views
How to avoid response timeout of my webpage in ASP.NET?
I'm importing large amount of data from Excel(100.000 rows etc), and get the necessary values from the excel(it took 1 minute approximately)
Then I loop within these records and do some Database ...
1
vote
2answers
407 views
Download file from gridview rowcommand
I've written out the below code to handle a file download which should occur on Gridview.RowCommand. It works in other places where I've used it (linkbutton outside of a gridview or similar control).
...
0
votes
1answer
56 views
Send File to Client from UserControl behind UpdatePanel
I have a user control on an ASP.Net page (that is using Master Pages) inside an UpdatePanel. This control has several functions, including buttons. The control works fine, except for one link where ...
0
votes
1answer
66 views
Response.Flush writes HTML for page on Windows Vista, 7, 8 but not on Server 2008
I'm generating a CSV from a link on the page and sending it back to the user. I wish to maintain the page context. This code works flawlessly for IE, Chrome and Firefox on my 2008 Dev box, however ...
0
votes
2answers
318 views
ASP.NET Response.Redirect() issue not working at false parameter
Have trouble with the Response.Redirect() and getting the error:
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack
I've googled and found some ...
0
votes
1answer
79 views
Asp.net Re-enable disabled button on Response
After some extensive searching, I can't seem to find a solution to this particular problem.
I have a button which calls a server-side method which uses response to send a Zip file to the browser, and ...
0
votes
1answer
56 views
Default synchronization of Request.Cookies and Response.Cookies
Would it be possible for anybody to clarify the behaviour I am experiencing in a .NET 4.0 web app, when trying to manipulate the cookie collections in Response.Cookies and/or Request.Cookies. Despite ...
-1
votes
3answers
213 views
Unable to print integer value using Response.Write()
I have following code that prints some list. The list is printing but the value of integer variable i is not printing.
<%
int i = 1;
try
{
foreach (LElement r in LElements)
{
...
0
votes
3answers
266 views
Download txt file issue
I'm new in .Net development.
I try to enable downloading txt file:
I use this code:
protected void Page_Load(object sender, EventArgs e)
{
string str = "Test information";
...
0
votes
2answers
108 views
Is response to Ajax call different from that of to full postback
When I try the following code with a postback the file download takes place normally:
FileInfo file = new FileInfo("C:\\a.txt");
Response.ClearContent();
Response.AddHeader("Content-Disposition", ...
0
votes
1answer
502 views
error The message received from the server could not be parsed
So What I'm doing is creating an excel file using epplus and saving it to response.outputstream
For some reason the code breaks giving me an error. I have no idea what I'm doing wrong.
Using package ...
0
votes
1answer
171 views
open files from output stream
I'm trying to save my chart image so that I can put it into an excel file created using epplus
Response.ContentType = "image/bmp"
Response.AppendHeader("Content-Disposition", ...
0
votes
1answer
106 views
Example for a simple string response to HttpClient request in .aspx webpage
I'm just trying to respond with a string to HttpClient POST request, but my webpage always responds with the whole HTML text plus other things.
I'm a noob and i would appreciate a simple example ...
4
votes
1answer
380 views
Thread was being aborted - while looping a lot of rows
I load a datatable which has aprox. 60.000 rows.
I loop these, and write them our like this to build a file:
HttpContext.Current.Response.Write(lineItem);
...
1
vote
3answers
3k views
Opening a new Window Codebehind ASP.net
I have the following code:
protected void Page_Load(object sender, EventArgs e)
{
byte[] buffer = null;
buffer = File.ReadAllBytes("C:\\myfile.pdf");
...
0
votes
0answers
291 views
C# Response Shows Download Unsuccessful Error on Android Browser
I used Asp.net and c# to run this website and to approach mobile version, I used JQuery mobile. When I download via desktop browser is working fine and when I try to download via mobile, I got ...
1
vote
1answer
290 views
HttpModule Change Response
When invoking webservice I need to change response text when invoking certain operation .
Therefore I created HttpModule that catch response and change it.
Below the code :
public class BeginEnd : ...
2
votes
1answer
125 views
Invoke Url to check content type?
I need to check if the url content type is pdf or not? I have a working code however i was wondering what's the best way to check from what i have. I don't need to display the pdf, just need to check ...
2
votes
1answer
370 views
processing of page stops after response.writefile
This question has been asked a number of times but still I am not able to find a proper solution to it. I have two questions.
I am creating an excel file, writing data to it and then rendering it to ...
1
vote
1answer
443 views
Redirecting to a page after clicking OK in confirmation box in asp.net VB
I have an if condition on a button which redirects to another page. I want a confirmation box to pop up if the condition is true. If the user clicks ok on the box he should be redirecting to the page ...
1
vote
2answers
290 views
how to get/trace asp.net outgoing response text
my server seems to be sometimes returning wrong html to webclients
im using asp.net 4 with VS 2012. debugging on IIS Express.
in order to debug this issue, id like to trace the html that asp.net is ...
-1
votes
2answers
380 views
How to download .txt file from a url?
I produced a text file and is saved to a location in the project folder.
How do I redirect them to the url that contains that text file, so they can download the text file.
CreateCSVFile creates the ...
0
votes
1answer
94 views
Is it possible to change some form-data fields before sending the redirect response back to user?
I would like to redirect user's POST request with form data using 307 redirect like that
protected void RedirectTemporary(string url)
{
Response.ClearContent();
Response.StatusCode = 307;
...
0
votes
1answer
655 views
changing visibility contentplaceholder asp.net not working immediately
I have a simple asp.net webpage that contains of 2 RadioButton lists. When the form is submitted some more complex code is executed, which takes some time (5-10 seconds) to execute.
I want to simply ...
0
votes
0answers
87 views
How to configure the Response/Result for ASP.NET 4 Web Service(.asmx) after a HttpPOST?
I'm creating an ASP.NET 4 Web Service(.asmx) to receive a HttpPOST with values from a flash form. These values are then arranged into message and sent using SmtpClient. This part is successful, no ...
1
vote
3answers
8k views
open page in new tab asp.net
I am writing a project using ASP.NET C#.
I want to implement linkbutton click event to open new page in a new tab, but before I have to create new session variable. I have tried this:
protected void ...
1
vote
2answers
2k views
Asp.Net Force Page_Load when Clicking Back Button On Browser
I have an ASP.NET project that I have created in Visual Studio 2010. So to begin the project, I got the generic "MY ASP.NET APPLICATION" page. I have since removed all that generic content and am ...
4
votes
1answer
214 views
Preloader while generating PDF using response object
I am generating a PDF using the response object. The code actually renders the HTML to the PDF. PDF generation time is not fixed, so I want to show a preloader process (processing/loading) during this ...
4
votes
3answers
1k views
Response.WriteFile writing the content twice
Here is my code..
string attachment = "attachment; filename=Call-Details-Report-" + startDate.SelectedDate.Value.ToString("MM-dd-yyyy") + ".csv";
Response.Clear();
...
1
vote
1answer
282 views
Download a file that is written to the Response stream in ASP .NET C#
The objective:
- Server side: Write a file to the response stream after verifying credentials. In other words, no public access to the file.
- Client side: Download this file by from ...
-3
votes
1answer
302 views
how to get xml response from a server [closed]
I am trying to find a method or a function that get xml response from a server.
The problem is not in sending the request but in receiving the response from a server i will build a script in asp.net ...
0
votes
1answer
204 views
How to hide loading animation when an open/save dialog is showm to the user?
I have an export button in my application.
When I click the button, it posts back to the server and generates an Excel file.
I want to show a loading gif during the process, but when the open/save ...
0
votes
1answer
1k views
Can we use Response.Flush () instead of Response.End()
Response.End() generates ThreadAbortException.
Using HttpContext.Current.ApplicationInstance.CompleteRequest in place of it doesn't solve the problem.
So, can we use Response.Flush() instead of ...
0
votes
1answer
133 views
NullReferenceException in Cookies
I have the following code:
HttpCookie myCookie = new HttpCookie("PopMsgText");
myCookie.Value = message;
Response.Cookies.Add(myCookie);
It is giving NullReferenceException at the Response line. ...
0
votes
1answer
210 views
Error in Parsing Web Service response in javascript via ajax
I'm calling a web service via an ajax call that looks like -
$.ajax({
cache: false,
type: 'POST',
url: 'renderDisplay.asmx/displayElements',
dataType: ...
0
votes
1answer
264 views
post more than one data in asp.net with C# and get back the response
I'm trying to post data at "http://www.indianrail.gov.in/cgi_bin/inet_srcdest_cgi_time.cgi" using asp.net with C#. The problem is that the code that i am using is not able to post more than one data. ...
0
votes
1answer
165 views
Getting some HTML code on response of ASPX page
I am making an application.In that application i have one blank aspx page.That application is deployed on IIS. And i am calling that aspx page from other machine.On the load event of aspx page i ...
-1
votes
1answer
329 views
How to use Using Response.Transmit()
Here is a piece of my code....
if (objTbl.Rows.Count > 0)
{
string attachment = "attachment; filename=Call-Details-Report-" + startDate.SelectedDate.Value.ToString("MM-dd-yyyy") + ...
0
votes
1answer
238 views
How to use Response.AppendHeader to cue up players in a browser game?
Response.AppendHeader("Refresh","10; URL = game.aspx");
This code above will refresh the page every 10 seconds. Picture player 1 pressed the join button and be placed in a cue to wait for player ...
0
votes
3answers
361 views
Asp.net - Can't Change Visibility of Panel After Downloading File
I am displaying a panel that containg a button. When the user clicks the button, it does some processing and then downloads a file for the user. The code for that is shown here:
private void ...
0
votes
1answer
322 views
Response.Redirect doesn't work
I am wondering why my Response.Redirect doesn't work. So basically, I read the files in my folder, or exactly the index.html. When I find it i redirect to it .
foreach (System.IO.FileInfo thefile in ...
1
vote
2answers
1k views
How can I show an xml file in my asp.net project?
In a .Net web-service, when you click "invoke" button an XML file is opened.
I have a page with a button. I want when I click it an XML page be opened like web-service pages. I have written the ...

