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  >  Interview Questions  >  Microsoft  >  DotNet

 Print  |  
Question:  What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?



March 03, 2005 15:03:48 #2
 Binda Joshi   Member Since: Visitor    Total Comments: N/A 

RE: What property must you set, and what method must you call in your code, in order to bind the data fr
 
You must set the DataMember property which Gets or sets the specific table in the DataSource to bind to the control and the DataBind method to bind data from a source to a server control. This method is commonly used after retrieving a data set through a database query.
     

 

Back To Question