How can I produce following code in AspNet MVC with ActionLink (not format throw css)
<a href="#"><anotherHtmlElement>Title</anotherHtmlElement></a>
example
<a href="#"><strong>Title</strong></a>
Sorry for my bad english
How can I produce following code in AspNet MVC with ActionLink (not format throw css)
<a href="#"><anotherHtmlElement>Title</anotherHtmlElement></a>
example
<a href="#"><strong>Title</strong></a>
Sorry for my bad english
Why do it that way? How about
<anotherHtmlElement><a href="#">Title</a></anotherHtmlElement>
Also, rather than using <strong>
, you should be handling your formatting in CSS.