Click here to Skip to main content
15,888,816 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: crystal report ask for login and password on pc-2 Pin
sashidhar30-Sep-09 21:26
sashidhar30-Sep-09 21:26 
Questionhow to develop discussion forum Pin
Member 311322530-Sep-09 20:04
Member 311322530-Sep-09 20:04 
AnswerRe: how to develop discussion forum Pin
Abhijit Jana30-Sep-09 20:08
professionalAbhijit Jana30-Sep-09 20:08 
GeneralRe: how to develop discussion forum Pin
Member 311322530-Sep-09 20:27
Member 311322530-Sep-09 20:27 
GeneralRe: how to develop discussion forum Pin
Abhijit Jana30-Sep-09 20:34
professionalAbhijit Jana30-Sep-09 20:34 
GeneralRe: how to develop discussion forum Pin
sashidhar30-Sep-09 20:53
sashidhar30-Sep-09 20:53 
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 
I think..! You Have to Specify the Content type And try to display THt.


For Image

byte[] arrContent = null;
       //dr["Photo"] is Byte Content
     arrContent = (byte[])dr["photo"];
     int length = arrContent.Length;
     Response.ContentType = "image/JPEG";
     if (length!=0)
     Response.OutputStream.Write(arrContent, 0,length);
     Response.End();

or
Any File You have zip it and give them a download option..!Cool | :cool:

MyFirstArticlePublished: MenuControlSelectedItem
Why Do Some People Forget To Mark as Answer .If It Helps.

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 
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 

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.