Asp Control ASP.Net

<%@Page Language="C#"%>


               forecolor="#000000"
               backcolor="#ffffff"
               cellpadding="3"
               gridlines="none"
               width="50%" >
                 font-size="12"
               backcolor="#ffffff" />
                 font-size="2"
               backcolor="#ffff00" />
  
    <%# Container.DataItem %>
  





void Page_Load() {
   // create an ArrayList of values to bind to
   ArrayList arrValues = new ArrayList(4);
   arrValues.Add("A");
   arrValues.Add("B");
   arrValues.Add("C");
   arrValues.Add("D");
   arrValues.Add("E");
   // set the DataSource property of the control to the
   // array and bind it to display the values
   dlTest.DataSource = arrValues;
   dlTest.DataBind();
}