how to retrieve binary data from database (using c#.net and
sql server/windows application)
Answer Posted / brajesh
byte[] m_MyImage = (byte[])dr["photo"];
Response.BinaryWrite(m_MyImage);
| Is This Answer Correct ? | 8 Yes | 13 No |
Post New Answer View All Answers
In a site to turn off cookies for one page which method is followed?
What type is string in c#?
Why are local variables stored in stack?
is it possible to access a remote web service Without UDDI?
List down the access modifiers available in c#?
What Is The Difference Between The System.array.copyto() And System.array.clone()?
How can I access the registry from c# code?
What happens during the process of boxing?
What is a virtual property. Give an example?
Can you access a hidden base class method in the derived class?
Explain the serialization in .net
What is multithreading with .net?
Can an exception be thrown from a catch block?
What is the difference between C# 3.5 and C# 4.0?
How to get the sum of last 3 items in a list using lambda expressions?