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

One Listbox showing all cities. If you select one city in
list box the information related to that particular city
should be displayed in Datagrid . How do you do that?

Answer Posted / sathish

protected void ddlcity_SelectedIndexChanged(object sender,
EventArgs e)
{
sqlConnection con= new sqlConnection(" ");
string str="select * from table where city ='" +
ddlcity.SelectItem.Text ="'";
sqlDataAdapter da= new slqDataAdapter(str,con)
dataset ds = new dataset;
da.fill(ds,"City");
dgview.datasource=ds.tables["City"];
dgview.dataBind();
}

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What type of code, client-side or server-side, is found in a code-behind file of a Web page?

1005


What are session cookies?

1064


Which property needs to be set for script manager control to extend the time before throwing time out expection if no response is received from the server?

1020


How can you handle errors in Web API?

1224


Will session work if cookies is disabled?

1062


What is asp.net web application?

1098


What is windows active directory authentication?

1113


How to create multi language website in asp.net mvc? : Asp.Net MVC

1046


What is the difference between a multi-layer and multi-tier applications?

1062


What is the difference between CLICK and MOUSE DOWN Event ?

1239


To get the values in two different controls to match which control you use it?

1095


What do you understand by aggregate dependency?

1145


What is active web pages?

1010


Is it possible to write code in many languages in one asp.net project?

1061


Why is string called immutable data type?

1087