I created a new database (AC_2012) on my localhost in SQL Server 2008 Management Studio.
AC_2012
I\'m trying to connect it via connection string in web.con
web.con
Database names with an underscore _ need to be delimited with square braces [].
_
[]
Try
connectionString="server=.\SQLEXPRESS;database=[AC_2012]; integrated security=True; "
Alternatively, just don't put an underscore in your database name.