GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Programming  >  ASP.NET

 Print  |  
Question:  Fill data in dropdown list

Answer: How to fill data in the dropdownlist from database


July 07, 2008 13:50:54 #1
 raghulvarma   Member Since: December 2007    Total Comments: 7 

RE: Fill data in dropdown list
 
DropDownList1.Items.Add("India");
DropDownList1.Items.Add("Pakistan");
DropDownList1.Items.Add("Srilanka");
     

 

Back To Question