I can't understand what some of my code is doing exactly. Here's what I have:
model.People = _PersonProvider.GetListByIds(_HttpContext.QueryString()["people"])
I know that the model.People = (_HttpContext.QueryString()["people"] is supposed to return a list of id's but I'm having trouble knowing how it's doing that. Is this doing some kind of webservice call maybe? Something to do with the URL? I'm new to asp.net.