Where does an "ASP.NET Web Application" project store user registration details? -


when developing website using visual studio 2013 asp.net web application template, user's information stored when register details through register.cshtml view page?

you create mvc web application in vs 2013. @ moment database doesn't exist. run application on localhost , register user, db created.

what name? in web.config:

<connectionstrings>     <add name="defaultconnection" connectionstring="data source=(localdb)\v11.0;attachdbfilename=|datadirectory|\aspnet-webapplication2-20150615111350.mdf;initial catalog=aspnet-webapplication2-20150615111350;integrated security=true"       providername="system.data.sqlclient" />   </connectionstrings> 

where it's located? in app_data folder:

localdb

you can use sql management studio managing db.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -