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

When a dropdownlist has been added by some records and it
has been binded why it is not executing i'm facing this
error pls help me ?

if (is!pageposback)

{
arraylist books = new arraylist;
books.add ("gone with the wind");
books.add ("rahulsriramprakash");
books.add ("vishal");
dropdowndisplay.datasource=books;
dropdowndisplay.databind();
}

The error is :

1) The dropdowndisplay does not exist.

Answer Posted / tarun

instead of arrayList use HashTable

and create one bindingsourse

BindingSource bs=new BindingSource();

HashTable hs=new HashTable();
hs.Add("Value","Key");

bs.dataSource=hs;

dropdowndisplya.datasource=bs;
dropdowndisplay.databind();

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the security types in ASP/ASP.NET? Different Authentication modes?

1101


Explain login control and form authentication.

1064


What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?

1082


what are the Custom controls in asp.net?

1081


If you are using two select queries and retrieving data. how do you access second query's result set using data reader?

5658


What is full trust in asp.net?

1171


Explain about solution explorer window?

1073


What is aspect-oriented programming?

1201


What is httpresponse?

1021


What are the steps to follow to host a web application on a web server?

1115


What is asp.net version?

1030


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

1275


What setting must be added in the configuration file to deny a particular user from accessing the secured resources?

1100


What is asp.net? How is it different from asp?

1085


How do you do Client-side validation in .Net?

1133