I'm working on an admin view that lists ASP.NET Identity users with a link to create a new user. Right now the link just takes you to a new page with a form for creating a new user. After saving the new user, it sends you back to the user list page. The list page already accepts pageNumber and pageSize parameters (where pageSize is the number of users to retrieve and display at once.) What I want to do is display the page that contains the user that was just created, but how can I determine which page that user falls on? I'm working on an admin view that lists ASP.NET