Windows Authentication

WebConfig'deki ConnectionString kodum.
<add name="K" connectionString="Server=.;Database=DenemeDB;Integrated Security=true" providerName="System.Data.SqlClient"/>
ve bağlantı kodum ;
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["K"].ConnectionString);
Hata kodu satırı ;
if (con.State == ConnectionState.Closed) { con.Open(); }
Bağlantıyı açmak isterken sorun yaratıyor.

Ayrıca ilginiz için teşekkür ederim.