Adding extra Menu Item--- Urgent Help required

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
Hi.. I have created new menu item called LuggageTags. But when ever i'm clicking on that page it is giving me an below error :

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

Requested URL: /customer/”/t/LuggageTags”

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.17929..

Could you please help me how to resolve this.. Just For information what I have done till now:

1) Created a topic with system name: LuggageTags
2) Created a localization record with resource name : luggageTags
3) Added below line to the Menu.cshtml file
      <li><a href=”@Url.RouteUrl("Topic", new { SystemName = "LuggageTags" })”>@T("luggageTags")</a></li>

Please  help me on getting resolve. Do I have missed something?

Thanks In Advance
11 years ago
ricky_maha24 wrote:
Hi.. I have created new menu item called LuggageTags. But when ever i'm clicking on that page it is giving me an below error :

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

Requested URL: /customer/”/t/LuggageTags”

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.17929..

Could you please help me how to resolve this.. Just For information what I have done till now:

1) Created a topic with system name: LuggageTags
2) Created a localization record with resource name : luggageTags
3) Added below line to the Menu.cshtml file
      <li><a href=”@Url.RouteUrl("Topic", new { SystemName = "LuggageTags" })”>@T("luggageTags")</a></li>

Please  help me on getting resolve. Do I have missed something?

Thanks In Advance


There are 2 quotes (") that is using the wrong character (”). You can copy the line in Notepad and notice the difference of " and ”.

Try this:

<li><a href="@Url.RouteUrl("Topic", new { SystemName = "LuggageTags" })">@T("luggageTags")</a></li>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.