Hi all, i am creating a partialview with a controller action like:
public ActionResult GetPostsByUser(string userName) {
where userName is part of the URL:
www.example.com/User/toddM
toddM being the userName
First off.. am i going about this the right way?? if i make it a querystring ?userName=toddM it works.. but i need it to read from the URL. Again, this is a partialview . thanks!