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.

Answers were Sorted based on User's Feedback



When a dropdownlist has been added by some records and it has been binded why it is not executing i..

Answer / rajesh

make sure that dropdownlist is there in the webform

Is This Answer Correct ?    2 Yes 0 No

When a dropdownlist has been added by some records and it has been binded why it is not executing i..

Answer / sujit biswas

if (!IsPostBack)
{
ArrayList books=new ArrayList();
books.Add("gone with the wind");
books.Add("rahulsriramprakash");
books.Add("vishal");
dropdowndisplay.DataSource = books;
dropdowndisplay.DataBind();
}

Is This Answer Correct ?    3 Yes 1 No

When a dropdownlist has been added by some records and it has been binded why it is not executing i..

Answer / vyas pyk

though u have the control in the web form some times is
shows like that onle,
the solutions is u better delete the control and add it
again u will get it

Is This Answer Correct ?    1 Yes 0 No

When a dropdownlist has been added by some records and it has been binded why it is not executing i..

Answer / rahul

Even i tried with that even it's saying the same error.

Is This Answer Correct ?    0 Yes 0 No

When a dropdownlist has been added by some records and it has been binded why it is not executing i..

Answer / 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

More ASP.NET Interview Questions

What is difference between user control and custom control?

1 Answers   TVS,


Can a master page have more than one contentplaceholder?

0 Answers  


How does output caching work in ASP.NET?

0 Answers  


how can you handle "control is not part of this page " error?

3 Answers   FactorH,


I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)

0 Answers   HCL,


Can we use MSSql as backend in asp.net...if yes then How.?

0 Answers   MCN Solutions,


what is the difference between response.write() and response.output.write()?

0 Answers  


What is cross page posting? How is it done?

0 Answers  


Name two properties common in every validation control?

1 Answers  


If i have 1000 records in dataset, how to do paging?

2 Answers   Mind Tree,


What are the types of session in asp.net?

0 Answers  


Which method is used to force all the validation controls to run?

0 Answers  


Categories