vote up 2 vote down star

I'm building an ASP.NET MVC application, using VB.NET and I'm trying to apply a css class to a Html.ActionLink using the code:

<%=Html.ActionLink("Home", "Index", "Home", new {@class = "tab" })%>

But when I run the code I receive the below error:

Compiler Error Message: BC30988: Type or 'With' expected.

I'm new to MVC and really haven't much of a clue what I'm doing so I can't see what's wrong there as I'm using code based of an example elsewhere.

Thanks in advance for any help.

flag

3 Answers

vote up 3 vote down check

It is:

<%=Html.ActionLink("Home", "Index", MyRouteValObj, new with {.class = "tab" })%>

If VB.net you set an anonymous type using

new with {.class = "tab" }

and, as other point out, your third parameter should be an object (could be an anonymous type, also).

link|flag
vote up 0 vote down

There is no such a signature for Html.ActionLink method with (string, string, string, object).

link|flag
+1 because you are right – Eduardo Molteni Sep 18 at 13:38
But the question was "How do I apply a CSS class to html.ActionLink in ASP.NET MVC?", so this didn't answer the question whatsoever. – Kezzer Sep 18 at 13:53
vote up 0 vote down

deleted the c#... here is the vb.net

<%=Html.ActionLink("Home", "Index", "Home", New With {.class = "tab"}, Nothing)%>
link|flag
Bad syntax for Vb.net and there is no constructor with this signature – Eduardo Molteni Sep 18 at 13:35
sorrry... by default...i took c#.. should have been more careful reading the question.. – rajesh pillai Sep 18 at 13:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.