gs11111
gs11111

Reputation: 659

where is aspnetdb.mdf in mvc3 default sample program?

In the default sample appication in mvc3, Where do the details we fill in registration form gets stored?

<configuration>
  <connectionStrings>
    <add name="ApplicationServices"
         connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
         providerName="System.Data.SqlClient" />
  </connectionStrings>

I did not find any aspnetdb.mdf file in app_data folder.

Upvotes: 1

Views: 251

Answers (1)

Sean Kenny
Sean Kenny

Reputation: 1636

You need to click the 'show all files' option as it is hidden IIRC.

enter image description here

Upvotes: 1

Related Questions