supermatchgame
Programmer
Hi,
I have implemented this UI Spinner ( on a .aspx page. The spinner is built around an HTML <ul> called s3 on the page.
How can I access the value of this control on a server - side event? For example, in the Page_Load event I have tried doing
to try and find the value but I get an 'Object Reference not set to an instance of an Object' message back.
Can anyone let me know what to do?
Thanks.
I have implemented this UI Spinner ( on a .aspx page. The spinner is built around an HTML <ul> called s3 on the page.
How can I access the value of this control on a server - side event? For example, in the Page_Load event I have tried doing
Code:
Dim k as String = Request.Form.Item("s3").ToString()
to try and find the value but I get an 'Object Reference not set to an instance of an Object' message back.
Can anyone let me know what to do?
Thanks.