cesark
Programmer
- Dec 20, 2003
- 621
Somebody knows how can I get a hidden field value inside a repeater control? I mean simply access to hidden field value.
I tried this:
But it doesn’ t work, I receive this error:
Type 'hidden' is not defined.
Line 301: offer_num = CType(itm.FindControl("of_num"), hidden).Value
Thank you
I tried this:
Code:
dim itm as RepeaterItem = Ctype(Ctype(sender, control).NamingContainer, RepeaterItem)
Dim offer_num As Int64
offer_num = CType(itm.FindControl("of_num"), hidden).Value
But it doesn’ t work, I receive this error:
Type 'hidden' is not defined.
Line 301: offer_num = CType(itm.FindControl("of_num"), hidden).Value
Thank you