In v2, Microsoft have gone with XHTML 1.0 Transitional as the
default doctype on pages. In v1.1, the default doctype was HTML 4.0
Transitional.
As you've no-doubt guessed, you're now working with a much more strict standard. So you have 2 options:
- Change all your HTML as the warnings suggest. This will make your pages XHTML compatible - which is a good thing.
- Go back to HTML 4.0 Transitional. You can do this by changing the doctype declaration at the top of your pages as follows:
You can also read more about doctypes at the w3 schools site.
Regarding the temporary code, this is part of the "on-the-fly"
compiling of the v2 framework. If you find that you're getting errors
in there, sometimes it helps to manually delete all the files in that
temporary directory. You'll be best to run IISRESET before you do that,
though.
HTH -
/gerrod