Masterpage Dropdown List not keeping Selected Index - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T12:44:07Zhttp://stackoverflow.com/feeds/question/800065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/800065/masterpage-dropdown-list-not-keeping-selected-index0Masterpage Dropdown List not keeping Selected IndexErdnod2009-04-28T22:14:39Z2009-04-28T23:38:24Z
<p>Ok, my masterpage has a dropdown which controls size which affects a lot of things. I need to access the dropdown index from content pages so I do it using this code.</p>
<pre><code>public partial class MasterPage : System.Web.UI.MasterPage
{
public DropDownList MySize { get { return _ddlSize; } }
}
</code></pre>
<p>I am using Ajax and when the size changes the menu on the Masterpage changes just fine. </p>
<p>But when I click on the updated menu it uses the zero index of the dropdown list on my contentpage even through visually it shows the size I selected.</p>
<pre><code> int size = Convert.ToInt32(Master.MySize.SelectedItem.Text); //Uses 0 index :(
</code></pre>
<p>I don't want to use Session, I just don't get why this doesn't work 100% of the time. Anyone have any ideas?</p>
http://stackoverflow.com/questions/800065/masterpage-dropdown-list-not-keeping-selected-index/800271#8002710Answer by Erdnod for Masterpage Dropdown List not keeping Selected IndexErdnod2009-04-28T23:31:52Z2009-04-28T23:31:52Z<p>I figured it out!</p>
<p>I set the dropdown to a public static object</p>
<pre><code>public static DropDownList MySize;
</code></pre>
<p>Then I just set it equal to the page instance each time the masterpage loaded.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
MySize = _ddlSize;
}
</code></pre>
<p>Calling the DropDownList is a little different since it's a static object.</p>
<pre><code>MasterPage.MySize.SelectedItem.Text
</code></pre>
<p>But it works on all Content Pages that derive from the Masterpage.</p>
http://stackoverflow.com/questions/800065/masterpage-dropdown-list-not-keeping-selected-index/800290#8002900Answer by Rony for Masterpage Dropdown List not keeping Selected IndexRony2009-04-28T23:38:24Z2009-04-28T23:38:24Z<p>did you check this solution in a multi-user scenario, since the value is static it will be reflected across different users</p>
<p>the view state set in the master page should retain the drop down lists value or try to use hidden controls to hold up the value</p>