up vote 19 down vote favorite
1
share [g+] share [fb]

It's really annoying that visual studio hides typos in aspx pages (not the code behind). If the compiler would compile them, I would get a compile error.

link|improve this question

78% accept rate
feedback

5 Answers

up vote 15 down vote accepted

Compile the pages at compile time. See Mike Hadlow's post here:

http://mikehadlow.blogspot.com/2008/05/compiling-aspx-templates-using.html

link|improve this answer
feedback

It is my belief you should always compile ASP.NET applications. There are a few instances where my clients requested otherwise. In Visual Studio, when you choose to publish your website, there is an option to have it compiled. Here is Microsoft's MSDN article which offers their information on compiling sites.

http://msdn.microsoft.com/en-us/library/ms178466.aspx

HTML issues and such will show up as "warnings" and not errors. So, you'll have to check the logs.

link|improve this answer
feedback

Resharper will catch errors in code ofASPX pages, all without compiling. works well imo, and better than later compiling.

EDIT: Resharper also has a Solution wide error checker. 'Resharper->Windows->Errors in solution'. It will analyze your entire solution and give a consolidated list of everything it finds, INCLUDING aspx files.

link|improve this answer
Resharper does catch the errors, but only when the file is opened. – Paco Sep 20 '08 at 15:05
But you need to create and edit the first, which means you should catch the error. – mattlant Sep 20 '08 at 15:10
What if you delete a property from a model, and reference it in your view as <% = ViewData.Model.DeletedProperty %> your code compiles, but your page is broken... – Casper Sep 20 '08 at 15:11
If that wont suffice, then you could always do a full precompile. – mattlant Sep 20 '08 at 15:11
feedback

There is the possibility to precompile the whole web: usually the pages only get compiled, if they are used.

To precompile the web, please refer to MSDN

link|improve this answer
feedback

Go to your project properties. Go to the Build Events tab.

In the Post-build event command line: text area, write this (for .Net 4.0) :

%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler.exe -v / -p "$(SolutionDir)$(ProjectName)"

Cheers !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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