Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

in database table is thier . in that table fields are
photoid , photoname,photo... i want display image in the
gridview

Answer Posted / .....

initially while inserting image into database take the
database field in oracle as BLOB in sql as image

during insertion convert the image file into bytes and
insert it into the database

during the display of image in datagrid take a image
template and display the converted values
sample code to get the image:
public byte[] spic(string cm,int id)
{
con = new OracleConnection(cm);
OracleCommand cmd = new OracleCommand("select
photo from kir_image where eid= "+id +" ", con);
con.Open();
byte[] img = (byte[])cmd.ExecuteScalar();
con.Close();
return img;
}

use Response.BinaryWrite to display the image

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is asp.net so popular?

917


Where is the view state data stored?

936


What is synchronous and Asynchronous post back ?

1062


What is ispostback method in asp.net? Why do we use that?

1130


Explain parts of assembly?

904


What are the disadvantages of using session?

1011


Why session is more secure than cookies?

858


What is asp.net mvc5? : Asp.Net MVC

980


What is virtual directory in asp.net?

997


What is the significance of ASP.NET routing?

1028


What is the difference between Classic ASP and ASP.Net?

1036


What is view state management in asp net?

865


What’s the difference between asp.net web forms and asp.net mvc?

1089


How you can return View from ASP.NET Web API method?

976


How many types of triggers are there in update panel?

970