Asp Control ASP.Net

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


               forecolor="#000000"
               backcolor="#ffffff"
               cellpadding="3"
               gridlines="none"
               width="50%" >
                 backcolor="#ffffff" />
                 backcolor="#ffff00" />
  
    <%# DataBinder.Eval(Container.DataItem, "Key", "{0}") %>
    <%# DataBinder.Eval(Container.DataItem, "Value", "${0:f2}") %>
  

  
    <%# DataBinder.Eval(Container.DataItem, "Key", "{0}") %>
    <%# DataBinder.Eval(Container.DataItem, "Value", "${0:f2}") %>
  





void Page_Load() {
   // create a HashTable of values to bind to
   Hashtable tabValues = new Hashtable(4);
   tabValues.Add("A", 49.56);
   tabValues.Add("B", 28.33);
   tabValues.Add("C", 55);
   tabValues.Add("D", 20.74);
   tabValues.Add("E", 41.1);
   // set the DataSource property of the control to the
   // hashtable and bind it to display the values
   dlTest.DataSource = tabValues;
   dlTest.DataBind();
}