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

Give some salient points of difference between request processor and request dispatcher.

1020


Which of the following .NET framework supports Web API?

1035


How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?

921


Why is mvc better than asp.net?

1014


When you are running a component within ASP.NET, what process is it running within on Windows XP? Windows 2000? Windows 2003?

1019


What is fulltrust?

977


What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC

915


Why select Web API?

963


When you use Ajax controls in the ASP.NET application?

996


Where code pages are used?

1147


Explain the steps needed to be performed in order to create an animation in xaml?

972


How do I open an ashx file in windows 7?

1010


What is s2s tracking?

933


What is the concepts of globalization and localization in .net?

902


How many web.config files can I have in an application?

938