How to Select Default Value/Text in Dropdownlist in C#

  1. <asp:DropDownList ID="ddlSize" runat="server" OnDataBound="ddlSize_DataBound">  
  2. <asp:ListItem Value="1">S</asp:ListItem>  
  3. <asp:ListItem Value="2">M</asp:ListItem>  
  4. <asp:ListItem Value="3">L</asp:ListItem>  
  5. <asp:ListItem Value="4">XL</asp:ListItem>  
  6. <asp:ListItem Value="5">XXL</asp:ListItem>  
  7. </asp:DropDownList>  
  8.    
  9. protected void ddlSize_DataBound(object sender, EventArgs e)  
  10. {  
  11.    if (ddlSize != null)  
  12.    {  
  13.       if (ddlSize.Items.FindByText("1") != null)  
  14.       {  
  15.          ddlSize.Items.FindByValue("1").Selected = true;  
  16.       }  
  17.    }  
  18. }  
  19.    
  20. OR  
  21.    
  22. protected void Page_Load(object sender, EventArgs e)  
  23. {  
  24.    if(!ispostback)  
  25.    {  
  26.       ddlSize.Items.FindByValue("1").Selected = true;  
  27.    }   
  28. }