Home > OS >  Gridview ASP.NET Changing values of the second drop down list based on value selected of first drop
Gridview ASP.NET Changing values of the second drop down list based on value selected of first drop

Time:03-15

<asp:SqlDataSource  ID="sdsUsers" runat="server"
ConnectionString="<%$ ConnectionStrings:Org Name %>"
SelectCommand="select full_name, user_id from dbo.Users where entity_state_id = 1">
</asp:SqlDataSource>
<asp:SqlDataSource  ID="sdsOrganizations"
runat="server"
ConnectionString="<%$ ConnectionStrings:Org Name %>"
SelectCommand="select organization_name from dbo.Organizations where Organization_Name like '           
  • Related