...implicitly convert type 'string' to 'System.Collections...
cast the value as scaler and then try to add it to the list. You can try as below: List<int> myIntList = new List<int>(); int retID = Convert.ToInt32(Request["requestedID"]); myIntList.Add(retID);