Greetings.
I have a form with some runat="server" controls that have a style of display="none". For instance:
On the client side, via javascript, this control get cloned with their id's set. For instance, ddlLimitBy becomes ddlLimitBy[]. All is well, with the client side.
What I can't figure out is how to then loop the ddlLimitBy[] array retrieving the values.
I'm working with VB.NET 2.0.
Any ideas are appreciated.
"If it's stupid but works, it isn't stupid."
-Murphy's Military Laws
I have a form with some runat="server" controls that have a style of display="none". For instance:
Code:
<asp:DropDownList ID="ddlLimitBy" style="display:none;" runat="server" />
On the client side, via javascript, this control get cloned with their id's set. For instance, ddlLimitBy becomes ddlLimitBy[]. All is well, with the client side.
What I can't figure out is how to then loop the ddlLimitBy[] array retrieving the values.
I'm working with VB.NET 2.0.
Any ideas are appreciated.
"If it's stupid but works, it isn't stupid."
-Murphy's Military Laws