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
You can use string.Split() to split the values once you have extracted them from the URL.
string[] splitIds = ids.split(',');