Click here to Skip to main content
15,891,607 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to recieve mails to my .net application Pin
Abhishek Sur21-Jan-09 21:06
professionalAbhishek Sur21-Jan-09 21:06 
Questiondelete a row? Pin
RajpootRohan21-Jan-09 20:25
professionalRajpootRohan21-Jan-09 20:25 
AnswerRe: delete a row? Pin
Muhammad Gouda21-Jan-09 20:46
Muhammad Gouda21-Jan-09 20:46 
GeneralRe: delete a row? Pin
N a v a n e e t h21-Jan-09 21:31
N a v a n e e t h21-Jan-09 21:31 
AnswerRe: delete a row? Pin
Neeraj Kr21-Jan-09 20:49
Neeraj Kr21-Jan-09 20:49 
QuestionWrapper Pin
mehrdadc4821-Jan-09 19:55
mehrdadc4821-Jan-09 19:55 
AnswerRe: Wrapper Pin
Abhishek Sur21-Jan-09 21:07
professionalAbhishek Sur21-Jan-09 21:07 
QuestionCannot download files because of a conflict between WebParts and UpdatePanels Pin
Muhammad Gouda21-Jan-09 19:54
Muhammad Gouda21-Jan-09 19:54 
if (file.Exists)
{
 Response.Clear();
 Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);
 Response.AddHeader("Content-Length", file.Length.ToString());
 Response.ContentType = "application/octet-stream";
 Response.WriteFile(file.FullName);            
 Response.End();
}

I am using the above code to download files listed in a listbox control
I am placing the listbox in WebPartZone to enable the client to change the page layout, also I put it in an AJAX UpdatePanel to disable postbacks

When I use ONLY the UpdatePanel, it works well
When I use ONLY the WebPartZone, it works well
When I use both together, I get an exception saying:

Sys.WebForms.PageRequestManagerParseErrorException: The message received from the server could not be parsed.Common causes for this error are when the response modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.
Details: Error parsing near 'MZ'.


foreach(Minute m in MyLife)
myExperience++;

modified on Thursday, January 22, 2009 2:49 AM

AnswerHopeless Case ?!!!!!! Pin
Muhammad Gouda21-Jan-09 21:25
Muhammad Gouda21-Jan-09 21:25 
QuestionNeed code for sending invitation to link in ASP.Net [modified] Pin
Jas 00721-Jan-09 19:43
Jas 00721-Jan-09 19:43 
AnswerRe: Need code for sending invitation to link in ASP.Net Pin
Abhishek Sur21-Jan-09 21:08
professionalAbhishek Sur21-Jan-09 21:08 
GeneralRe: Need code for sending invitation to link in ASP.Net Pin
Abhijit Jana21-Jan-09 21:12
professionalAbhijit Jana21-Jan-09 21:12 
Questionconverting exel data into SQL data. Pin
Nilesh S.Badge21-Jan-09 19:42
Nilesh S.Badge21-Jan-09 19:42 
AnswerRe: converting exel data into SQL data. Pin
Jas 00721-Jan-09 19:48
Jas 00721-Jan-09 19:48 
AnswerRe: converting exel data into SQL data. Pin
Abhishek Sur21-Jan-09 21:15
professionalAbhishek Sur21-Jan-09 21:15 
AnswerRe: converting exel data into SQL data. Pin
Rutvik Dave22-Jan-09 4:06
professionalRutvik Dave22-Jan-09 4:06 
QuestionFile upload to FTP Pin
Radhakrishnan G.21-Jan-09 18:45
Radhakrishnan G.21-Jan-09 18:45 
AnswerRe: File upload to FTP Pin
Abhishek Sur21-Jan-09 19:30
professionalAbhishek Sur21-Jan-09 19:30 
GeneralRe: File upload to FTP Pin
Radhakrishnan G.21-Jan-09 19:58
Radhakrishnan G.21-Jan-09 19:58 
QuestionHow To: Call a Java Web Service from a .Net Client - (.net 3.5) Pin
anto200521-Jan-09 10:25
anto200521-Jan-09 10:25 
AnswerRe: How To: Call a Java Web Service from a .Net Client - (.net 3.5) Pin
Not Active21-Jan-09 10:43
mentorNot Active21-Jan-09 10:43 
GeneralRe: How To: Call a Java Web Service from a .Net Client - (.net 3.5) Pin
anto200521-Jan-09 11:02
anto200521-Jan-09 11:02 
QuestionOpen File Pin
Terick21-Jan-09 9:58
Terick21-Jan-09 9:58 
AnswerRe: Open File Pin
Not Active21-Jan-09 10:37
mentorNot Active21-Jan-09 10:37 
AnswerRe: Open File Pin
Rutvik Dave21-Jan-09 11:25
professionalRutvik Dave21-Jan-09 11:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.