How to bind datalist datasource to a generic list

Source: Internet
Author: User
HTML code
<% @ Page Language = "C #" autoeventwireup = "true" codefile = "list2.aspx. cs" inherits = "datalist_list2" %> <! Doctype HTML public "-// W3C // dtd xhtml 1.0 transitional // en" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <HTML xmlns = "http://www.w3.org/1999/xhtml"> 
  
C # code
using System;using System.Collections;using System.Configuration;using System.Data;//using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;//using System.Xml.Linq;using System.Collections.Generic;public partial class Datalist_list2 : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {        DataBinding0();    }    protected void DataBinding0()    {        List<QuestionObject> list = new List<QuestionObject>();        QuestionObject qo = new QuestionObject();        qo.Question = "Are you from China?";        qo.Answer = "Yes,Of Course.";        list.Add(qo);        QuestionObject qo1 = new QuestionObject();        qo1.Question = "Are you from USA?";        qo1.Answer = "No,I'm from Russia.";        list.Add(qo1);        DataList1.DataSource = list;        DataList1.DataBind();    }    public class QuestionObject    {        private string _question;        public string Question        {            get { return _question; }            set { _question = value; }        }        private string _answer;        public string Answer        {            get { return _answer; }            set { _answer = value; }        }    }}
Protected void page_load (Object sender, eventargs E)
{
VaR list = new [] {
New {question = "are you from China? ", Answer =" Yes, of course ."},
New {question = "are you from USA? ", Answer =" No, I'm from Russia ."}
};
Datalist1.datasource = List;
Datalist1.databind ();
}
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.