convert hiddenfield datatype from string to int
string id = hiddenfield.Value;
I have tried the following,same error - Input string was not in a correct format.
Int32.Parse(hiddenfield.value).
Convert.ToInt32(hiddenfield.value)
Please help