Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop URL.Action from including parameters?

In my main navigation I have a link to:

Url.Action("Items", "FAQ");

The link works fine and I get to ~/Item/FAQ

However, I have links which contain parameters, so:

~/Items/FAQ/Question-1

This all works fine, however, when I'm viewing Question-1 (which is a View, the link in the main navigation changes to:

~/Items/FAQ/Question-1

How do I keep the Url in the navigation to stay at ~/Items/FAQ

Thanks!

like image 423
Jack Marchetti Avatar asked Jan 27 '11 17:01

Jack Marchetti


1 Answers

Url.Action("Items", "FAQ", new { WhateverYourRouteParameterIsCalled = "" })
like image 157
Darin Dimitrov Avatar answered Nov 16 '22 00:11

Darin Dimitrov