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

On select change event of the list box use the following code.

Dim con as new sqlconn("connectionstring")
con.open()
dim da as sqlda("select * from table where cityname=" &
listbox1.selecteditem)
dim ds as new dataset
da.fill(ds)

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we override the enablepartialrendering property of the scriptmanager class?

860


If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?

739


What is mvc in asp.net interview question? : Asp.Net MVC

686


What does passport and windows authentication mean in ASP.NET?

848


Explain how cookies work.

779


How can we make sure that Web API returns JSON data only?

742


What is microsoft windows sharepoint services?

743


How should I destroy my objects in asp.net?

776


What is the mvc model?

745


What is the maximum number of classes that can be contained in one dll file?

925


Is sql backend or frontend?

730


14. What are your Future Plans for Swatz Oils GROUP U.K?

1948


Mention the namespace that is used to include .net data provider for sql server in .net code?

689


What is page fragment caching?

710


What are the events in a page life cycle?

708