Click here to Skip to main content
15,885,278 members

Comments by adityaswami89 (Top 3 by date)

adityaswami89 30-Dec-15 3:37am View    
Is there any item selected in that dropdown ?

There are 2 aspects :
1. IF you want to bind then you can do something as below :

<asp:DropDownList ID="ddlState" runat="server" DataSourceID="sqlDatasource1"
DataTextField="State" AppendDataBoundItems="True"
SelectedValue='<%# Eval("State") %>' DataValueField="State">


Refer below link :
https://msdn.microsoft.com/en-us/library/ms178294.aspx

2. Intending to assign the selected value of a dropdown present in a gridview into the a label (as you are trying the solution above , i assumed you are only assigning) , you can do as below :

Label456456.Text= ((DropDownList)row.FindControl("DropDownList5")).SelectedItem.Value;

This would work. Kindly debug !!!
adityaswami89 10-Oct-14 4:25am View    
Please refer this article :
http://stackoverflow.com/questions/431940/how-to-set-default-wpf-window-style-in-app-xaml
adityaswami89 24-Sep-14 2:50am View    
you should do something like below :
AppDomain.CurrentDomain.BaseDirectory + @"Database.xml"