how to get master page control value in contant page
control like button and Drop Down list Box selected value
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Apr 14, 2011, 9:36 AM
DropDownList tmpdll = (DropDownList) this.Master.FindControl("ddl1");
Response.Write(tmpdll.SelectedValue);
tmpdll = null;