Click here to Skip to main content
15,913,587 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I had a dropdown bind which always selects the first value from the bound data, how to set the first value as "null value" can any 1 helps me


C#
void dropdown_bind()
  {

      adp = new SqlDataAdapter("sp_dropdownbind", con);
      adp.SelectCommand.CommandType = CommandType.StoredProcedure;
      ds = new DataSet();
      adp.Fill(ds);

      ddlTypeid.DataTextField = "Name";
      ddlTypeid.DataSource = ds.Tables[0];
      ddlTypeid.DataBind();

      ddlproductid.DataTextField = "ProductName";
      ddlproductid.DataSource = ds.Tables[1];
      ddlproductid.DataBind();


  }
Posted
Updated 12-Jul-13 0:23am
v2

1 solution

C#
<asp:dropdownlist id="DropDownList2" runat="server" appenddatabounditems="true" xmlns:asp="#unknown">
 
<asp:listitem selected="True" text="" value=""></asp:listitem>
 
</asp:dropdownlist>
 
Share this answer
 
Comments
kesav prakash 12-Jul-13 6:28am    
Thank u sushil i got the Right one
Sushil Mate 12-Jul-13 6:28am    
your welcome
kesav prakash 12-Jul-13 7:05am    
i posted the new question name
how to set the NULL value while insertion when DB datatype is integer
kindly answer for that

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900