vpgrmer 0 Newbie Poster

I am having a time trying to figuring out the routing procedure in MVC 3. I have tried the route.add and even copied the routes.MapRoute given to me by the global.asax.cs page. I get the theory of the following;

routes.MapRoute("simple", "("controllername", "action", and "id")");

I have a link on one page link to another page on the same site. I used

<a href="../Users/BlobMaster.aspx">

I created a controller name Blog and the controller is referencing the BlogMaster.aspx. I need some direction.