Hi Guys I Would like to know how do I get information from a dropDownList and display its selected value using crossPagePostBack.
I am using : TextBox TextBoxLocation = this.PreviousPage.FindControl("TextBoxLocation") as TextBox; to get information from the souce page to display in the target page.
Now I would like to know How doI get information from the DropDownList and display it in another page using CrossPagePostBack ?
The DropDownList has the following values:
<asp:DropDownList CssClass="searchMenuSize" ID="DropDownRentSell" runat="server"
DataTextField="RentSell"
DataValueField="RentSell">
<asp:ListItem>To Rent</asp:ListItem>
<asp:ListItem>To Sell</asp:Lis ...
Go to the complete details ...