is there a way I can hack out the fieldset and legend tags in the VS2010 MVC razor view templates?
I've had a bit of a look through the C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE directory but I can't find what I'm looking for.
is there a way I can hack out the fieldset and legend tags in the VS2010 MVC razor view templates?
I've had a bit of a look through the C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE directory but I can't find what I'm looking for.
Sounds like you'll need to download the source for MVC 3.0 and copy the templates you want to overwrite into you project and make the changes there.
If it is specific to your project, what you can do is copy the default templates to your project and modify them.
The MVC razor view templates are located in:
Copy the .tt files
Create a matching folder tree in your project starting from CodeTemplates. In this case, you need to create \CodeTemplates\AddView\CSHTML\ and paste the .tt files there.