suppose i have one dowpdown in master page and i want that when user select any item from that dropdown then a postback will occur and the selected item text will be dispalyed in the label of content page. please help me with sample code.
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should add the following directive to content page:
Add public property ih master page code-behind file:
Add event handler in content page:
Assign Master.DropDownList.SelectedValue to Label.Text in event hanlder.