Posted on: 5/29/2015 12:38:29 AM | Views : 728

Hi,
I created a web application from visual studio express and in it, there is this Account folder which has these few files:
Register.aspx Login.aspx Manage.aspx Web.config and so on.
I have also created the database from the command line using: aspnet_regsql.exe -W
I have this connection string in my web.config
<connectionStrings> <add name="DbConn" connectionString="Server=.\SQLExpress;AttachDbFilename=C:\Program Files (x86)\Microsoft SQL Server\MSSQL12.SQLEXPRESS\MSSQL\DATA\UMS.mdf;Database=UMS;Trusted_Connection=Yes;"/> </connectionStrings>
and in my IdentityModels.vb, I have set it to:
Public Sub New() MyBase.New("DbConn") End Sub But, when I run register.aspx and hit Register button, I got this error:
The connection s ...

Go to the complete details ...