I have the following code inside my asp.net vmc web application :-
var getNumbers = (from t in ut.newTag
where char.IsDigit(t)
select t).ToString();
tech.PartialTag = Convert.ToInt32(getNumbers);
but i am getting the following exception :-
Input string was not in a correct format.
so can anyone advice how i can solve this issue??