Click here to Skip to main content
15,885,757 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionOpen Byte Array and Save from Browser Pin
Danang Prakoso30-Sep-09 19:25
Danang Prakoso30-Sep-09 19:25 
AnswerRe: Open Byte Array and Save from Browser Pin
sashidhar30-Sep-09 20:09
sashidhar30-Sep-09 20:09 
GeneralRe: Open Byte Array and Save from Browser Pin
Abhijit Jana30-Sep-09 20:11
professionalAbhijit Jana30-Sep-09 20:11 
GeneralRe: Open Byte Array and Save from Browser Pin
sashidhar30-Sep-09 20:22
sashidhar30-Sep-09 20:22 
GeneralRe: Open Byte Array and Save from Browser Pin
Abhijit Jana30-Sep-09 20:34
professionalAbhijit Jana30-Sep-09 20:34 
GeneralRe: Open Byte Array and Save from Browser Pin
N a v a n e e t h30-Sep-09 20:58
N a v a n e e t h30-Sep-09 20:58 
GeneralRe: Open Byte Array and Save from Browser [modified] Pin
Abhijit Jana30-Sep-09 21:28
professionalAbhijit Jana30-Sep-09 21:28 
AnswerRe: Open Byte Array and Save from Browser Pin
Nisha Agrawal30-Sep-09 20:12
Nisha Agrawal30-Sep-09 20:12 
u can use this code piece for it.

Response.Buffer = true;
Response.AddHeader("Content-Disposition", "attachment;filename=" + strFileName);
Response.ContentType = "application/vnd.ms-excel"; // place actual application type here.
Response.Charset = "utf-8";
Response.BinaryWrite(xByte);
Response.End()
;

this code piece will present a open/save/cancel dialog.
GeneralRe: Open Byte Array and Save from Browser Pin
Danang Prakoso1-Oct-09 16:18
Danang Prakoso1-Oct-09 16:18 
AnswerRe: Open Byte Array and Save from Browser Pin
Nisha Agrawal1-Oct-09 20:27
Nisha Agrawal1-Oct-09 20:27 
QuestionRe: Open Byte Array and Save from Browser Pin
Danang Prakoso5-Oct-09 16:21
Danang Prakoso5-Oct-09 16:21 
QuestionRe: Open Byte Array and Save from Browser Pin
Danang Prakoso1-Oct-09 17:01
Danang Prakoso1-Oct-09 17:01 
Question[Message Deleted] Pin
11Developer30-Sep-09 19:23
11Developer30-Sep-09 19:23 
AnswerRe: Captcha Image on HTML by ASP code Pin
Abhijit Jana30-Sep-09 20:09
professionalAbhijit Jana30-Sep-09 20:09 
AnswerRe: Captcha Image on HTML by ASP code Pin
sashidhar30-Sep-09 20:16
sashidhar30-Sep-09 20:16 
AnswerRe: [Message Deleted] Pin
Abhijit Jana30-Sep-09 20:47
professionalAbhijit Jana30-Sep-09 20:47 
QuestionSetting value of HiddentField server side while using UpdatePanel Pin
Ramon Enachescu30-Sep-09 16:34
Ramon Enachescu30-Sep-09 16:34 
AnswerRe: Setting value of HiddentField server side while using UpdatePanel Pin
N a v a n e e t h30-Sep-09 17:42
N a v a n e e t h30-Sep-09 17:42 
GeneralRe: Setting value of HiddentField server side while using UpdatePanel Pin
Ramon Enachescu30-Sep-09 18:00
Ramon Enachescu30-Sep-09 18:00 
Questionwrap string in a gridview column Pin
eirikr130-Sep-09 13:10
eirikr130-Sep-09 13:10 
AnswerRe: wrap string in a gridview column Pin
Kannan Ar30-Sep-09 15:44
professionalKannan Ar30-Sep-09 15:44 
QuestionCustom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 12:23
SlingBlade30-Sep-09 12:23 
AnswerRe: Custom Composite Server Control Children not visible to the designer Pin
Christian Graus30-Sep-09 13:03
protectorChristian Graus30-Sep-09 13:03 
GeneralRe: Custom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 13:12
SlingBlade30-Sep-09 13:12 
AnswerRe: Custom Composite Server Control Children not visible to the designer Pin
N a v a n e e t h30-Sep-09 17:28
N a v a n e e t h30-Sep-09 17:28 

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.