Good morning,
I've developed several combo boxes on my web pages that are not updating when I submit the page for updating. One such combo box possesses the following code.
The datasource of the dropdown is a view of the company's name and ID that connects to ASP through a Linq datasource.
Any help would be greatly appreciated
Sydney
I've developed several combo boxes on my web pages that are not updating when I submit the page for updating. One such combo box possesses the following code.
Code:
Company:
<asp:DropDownList ID="DDLIssuer1" runat="server" AutoPostBack="True" AppendDataBoundItems="true"
DataSourceID="Issuer1DS" DataTextField="CompanySort"
DataValueField="IssuerCode"
SelectedValue='<%#(DataBinder.Eval(Container.DataItem,"IssuerCode")) %>'
width="350" >
<asp:ListItem Text="" Value=""></asp:ListItem>
</asp:DropDownList>
<asp:LinqDataSource ID="Issuer1DS" runat="server"
ContextTypeName="IssuerDropdownDataContext" TableName="vwIssuerDropdowns"
EnableDelete="True" EnableInsert="True" EnableUpdate="True">
</asp:LinqDataSource>
</td>
The datasource of the dropdown is a view of the company's name and ID that connects to ASP through a Linq datasource.
Any help would be greatly appreciated
Sydney