Let\'s say I have a web page that currently accepts a single ID value via a url parameter: http://example.com/mypage.aspx?ID=1234
I want to change it to acce
split is the first thing that comes to mind, but that returns an array, not a List; you could try something like:
List intList = new List; foreach (string tempString in ids.split(',') { intList.add (convert.int32(tempString)); }