Web.Config で定義されている接続文字列は現在、ユーザーまたはパスワードが必要ないことを示しています。
<connectionStrings>
<add name="CinemaxConnectionString" connectionString="Data Source=PCName\SQLEXPRESS;Initial Catalog=Cinemax;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
次のように、ユーザーとパスワードを追加したいと思います。
<connectionStrings>
<add name="CinemaxConnectionString" connectionString="Data Source=PCName\SQLEXPRESS;Initial Catalog=Cinemax;User=cinemax; Password=abc"
providerName="System.Data.SqlClient" />
</connectionStrings>
明らかに、これにはSql Server のいくつかの設定を変更して user と password を追加する必要があります。これを行う最善の方法は何ですか?Sql Server 2005 Express があり、現在の認証モードが "Sql Server and Windows Authentication" であることを指定します。よろしくお願いいたします。ユーザー インターフェイスとコード ソリューションという 2 つの側面があるとよいでしょう。