Lately that I’ve been working with ASP.NET MVC I’ve been finding myself in a few situations where I’ve needed to inject values into existing URLs. For example, when creating paging on a page it’s often useful to add a page number when the user clicks a page selection.
Imagine you have a url like this:
http://localhost/powerwell/search?subquerytype=sales&page=3&format=detail
and now you need to update the page number. You don’t know whether the page number is there or not or for that matter whether oth...
No comments yet, be the first one to post comment.