Im new to mvc so this I am sure is a stupid question. I have created a view that looks something simlar to
@using(Html.BeginForm())
{
@Html.RoundedCorner()
{
<h1>Hello world</h1>
}
}
Rounded corner is a just a helper class to create a nice looking rounded corner css box. When the page is rendered the form is created and also the rounded css box is applied however so does the text
MyProductName.Helpers.RoundedCorner
I assume this is because im doing something wrong but what? any tips?