R – Controlling drop down lists in Windows SharePoint Services 3.0 Form

sharepoint

I have created a form in a WSS 3.0 site. There are a number of drop-down lists on the form. Is there a way to control the values in one drop-down based on a selected value in a previous drop down?

Best Answer

On post-back you should be able to access the previously selected controls value.

If not, then you might want to try the Control.FindControl method.

http://msdn.microsoft.com/en-us/library/486wc64h.aspx

Related Topic