Click here to Skip to main content
15,914,010 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Tutorial Pin
Kevin McFarlane1-Aug-06 23:15
Kevin McFarlane1-Aug-06 23:15 
AnswerRe: Tutorial Pin
MudkiSekhon1-Aug-06 23:23
MudkiSekhon1-Aug-06 23:23 
QuestionASP NET & ActiveX Pin
bat762301-Aug-06 20:26
bat762301-Aug-06 20:26 
AnswerRe: ASP NET & ActiveX Pin
minhpc_bk2-Aug-06 15:42
minhpc_bk2-Aug-06 15:42 
QuestionFile uploading problem Pin
Prasad.garlapati1-Aug-06 20:23
Prasad.garlapati1-Aug-06 20:23 
AnswerRe: File uploading problem Pin
MudkiSekhon1-Aug-06 23:28
MudkiSekhon1-Aug-06 23:28 
AnswerRe: File uploading problem Pin
Paddy Boyd1-Aug-06 23:47
Paddy Boyd1-Aug-06 23:47 
QuestionImage Display Problem in ASP.net 2.0 Pin
sabby20061-Aug-06 19:56
sabby20061-Aug-06 19:56 
How do i display image from a database on an ASP page.
being read in a stream. which component should i use.
doing so is possible in window based application

This Is the code


SqlCommand comm = new SqlCommand("select photo from photos where name='sachin'", conn);

byte[] b = (byte[])comm.ExecuteScalar();
if (b.Length > 0)
{
// Open a stream for the image and write the bytes into it
System.IO.MemoryStream stream = new System.IO.MemoryStream(b, true);
stream.Write(b, 0, b.Length);
//if c#'s window based application then i can do it like this
//pictureBox.Image = new Bitmap(stream);
}


Sarbjeet Singh

AnswerRe: Image Display Problem in ASP.net 2.0 Pin
l0kke1-Aug-06 23:21
l0kke1-Aug-06 23:21 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20062-Aug-06 21:37
sabby20062-Aug-06 21:37 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke3-Aug-06 6:37
l0kke3-Aug-06 6:37 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20063-Aug-06 22:43
sabby20063-Aug-06 22:43 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke4-Aug-06 9:45
l0kke4-Aug-06 9:45 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20063-Aug-06 23:37
sabby20063-Aug-06 23:37 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke4-Aug-06 9:47
l0kke4-Aug-06 9:47 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20064-Aug-06 23:27
sabby20064-Aug-06 23:27 
AnswerRe: Image Display Problem in ASP.net 2.0 Pin
Ista2-Aug-06 3:57
Ista2-Aug-06 3:57 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20062-Aug-06 21:40
sabby20062-Aug-06 21:40 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
Ista3-Aug-06 2:46
Ista3-Aug-06 2:46 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke3-Aug-06 6:30
l0kke3-Aug-06 6:30 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
Ista3-Aug-06 6:34
Ista3-Aug-06 6:34 
QuestionWhat are HttpResponse and HttpRequest objects Pin
Sivaprasad C1-Aug-06 19:52
Sivaprasad C1-Aug-06 19:52 
AnswerRe: What are HttpResponse and HttpRequest objects Pin
l0kke1-Aug-06 23:16
l0kke1-Aug-06 23:16 
QuestionHelp needed regarding AJAX Pin
B Sridhar1-Aug-06 19:23
B Sridhar1-Aug-06 19:23 
AnswerRe: Help needed regarding AJAX Pin
King Shez2-Aug-06 3:38
King Shez2-Aug-06 3:38 

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.