Hello Ivan-
Thank you for your quick response! Indeed, that was the way to reference the home page. Thank you.
Unfortunately, I don't think I made myself completely clear. I am trying to create a link to the Forum (/Boards/), and I have already edited my language string resources for the forum to say the word "knowledgebase" instead.
Please click
this link ...and you'll notice that my category header's first two menu items are:
"home" and "knowledgebase"
ALL OF THE LETTERS ARE lower case.
I want them to be "
Home" and "
Knowledgebase"
..with only the first characters in upper case.
My code is now:
<li><a href="@Url.RouteUrl("HomePage")">@T("Home")</a></li>
<li><a href="@Url.RouteUrl("Boards")">@T("Knowledgebase")</a></li>
Both of the links work correctly, just the case is wrong.
When I try this:
<li><a href="@Url.RouteUrl("HomePage")">@T("HomePage")</a></li>
<li><a href="@Url.RouteUrl("Boards")">@T("Knowledgebase")</a></li>
..it looks like: "Home page" and "knowledgebase"
..automatically putting a space before the second instance of an upper case character, and setting the first character as upper case.
But when I try this:
<li><a href="@Url.RouteUrl("HomePage")">@T("HomePage")</a></li>
<li><a href="@Url.RouteUrl("Boards")">@T("KnowledgeBase")</a></li>
...with uppercase B in Base..it STILL looks like: "Home page" and "knowledgebase"
...no space and no upper case character (scratching head)
..so I know it is POSSIBLE to make characters be upper case, though it seems to be inconsistent, and I just do not see how to achieve what I want without adding words that I do not even want to appear.
What is the trick??
Thank you again for your help!
Steve