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
To continue on previous answer, quite simply iterating through the array returned by Split and converting to a new array of ints. This sample below in C#:
string[] splitIds = stringIds.Split(',');
int[] ids = new int[splitIds.Length];
for (int i = 0; i < ids.Length; i++) {
ids[i] = Int32.Parse(splitIds[i]);
}