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

ADO.Net - how to get data from database and bind to the
controls -- write this small code

Answer Posted / kinjal panchal

first of all write namespace in your page.
using Syste.data.sqlclient;

//code
sqlconnection cn=new sqlconnection();
cn.open();
sqlcommand cmm=new sqlcommand("write select query here",cn);
sqldataAdupter da=new sqldataAdupter(cmm);
datatable dt=new datatable();
da.fill(dt);
cn.close();

suppose u have gridview control then

gridview.datasource=dt;
gridview.databind();

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which dll handles the request of .aspx page?

1012


What is http post and http get?

1067


Do you know using sql cache invalidation?

1081


How to use ipostback?

1059


Explain the use of dataadapter.

1133


Why do I get error message "could not load type" whenever I browse to my asp.net web site?

1206


Can anyone please tell me that the question posted on this website are Sufficient for the interview with 2+ year experience in .net

2092


Explain exception handling in .net.

1118


What is the difference between the get method () and post method ()?

1037


Explain in what order a destructors is called.

1080


How could you modify xaml content from javascript?

1067


Why select Web API?

1049


What is inheritance and an how it be used, example with an example?

1117


They mostly asked difference between versions of technologies

1471


How will you do Redo and Undo in a TextControl?

1259