2011-02-09 12 views
0
<profile> 
      <properties> 
       <add name="Name" allowAnonymous="true" /> 
       <add name="Age" allowAnonymous="true" type="System.Int16"/> 
      </properties> 
      <providers> 
       <add name="AspNetSqlProfileProvider" 
        connectionStringName="ProfileServices" 
        applicationName="/" 
        type="System.Web.Profile.SqlProfileProvider" /> 
      </providers> 
    </profile> 

<connectionStrings> 
    <add name="ApplicationServices" 
     connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" 
     providerName="System.Data.SqlClient" /> 
     <add name="ProfileServices" 
      connectionString="Data source=CHANDAN-PC;Database=testdb;integrated security=sspi;" 
      /> 

    </connectionStrings> 

次のエラーが表示されます。SSEプロバイダが接続文字列で指定されたデータベースファイルを見つけられませんでした。構成された信頼レベル(高信頼レベル以下)では、SSEプロバイダーは自動的にデータベースファイルを作成できません。プロファイルに状態を保存する方法は?

+0

こんにちは、StackOverflowのへようこそ!あなたの質問を編集してください。以下の点を追加すると、より良い回答が得られるかもしれません:1.具体的に何を達成しようとしていますか? 2.これまでに何を試しましたか? 3.どのような結果を得ましたか? 4.あなたが期待していた結果とどのように違いましたか? (いいえ、それは自明ではないので、私は尋ねています) – Piskvor

答えて

関連する問題