Спасибо за ваши ответы ...
У меня не было моего маршрута, соответствующего имени значения.
Просто убедившись, что URL моего маршрута совпадает, он заработал.
Вот мой код ....
//Global.asax
routes.MapRoute(
"Profile",
"members/{membername}",
new { controller = "Members", action = "Profile", memberName = "" }
);
//In the Controller
public ActionResult Profile(string memberName)
{
return View();
}
//My Action Link
<%= Html.ActionLink(r.MemberName, "profile", new { memberName = r.MemberName })%>
Еще раз спасибо