L
lalit
Can some one please tell me how to make a specuific item selected in
dropdwonlist
my dropdwonlist is bounded with a database table getting something
like this:
<tr>
<td >
Client Name</td>
<td >
<aspropDownList ID="cboClientName"
runat="server" DataSourceID="SqlDataSource1"
DataTextField="ClientName"
DataValueField="ClientID">
</aspropDownList><asp:SqlDataSource
ID="SqlDataSource1" runat="server" ConnectionString="<%$
ConnectionStrings:ConnString %>" SelectCommand="SELECT [ClientID],
[ClientName] FROM [ClientTbl]">
</asp:SqlDataSource>
</td>
<td > </td>
</tr>
from here I want a selected item other than its given by default.
Do I have to use javascript for that
Can some one plz tell me
dropdwonlist
my dropdwonlist is bounded with a database table getting something
like this:
<tr>
<td >
Client Name</td>
<td >
<aspropDownList ID="cboClientName"
runat="server" DataSourceID="SqlDataSource1"
DataTextField="ClientName"
DataValueField="ClientID">
</aspropDownList><asp:SqlDataSource
ID="SqlDataSource1" runat="server" ConnectionString="<%$
ConnectionStrings:ConnString %>" SelectCommand="SELECT [ClientID],
[ClientName] FROM [ClientTbl]">
</asp:SqlDataSource>
</td>
<td > </td>
</tr>
from here I want a selected item other than its given by default.
Do I have to use javascript for that
Can some one plz tell me