after i login the web, the login text will change to logout. and i have another linkage, click to go to manage my account page.
but once click the "manage my account" linkage, i got below error.
An exception of type 'System.Data.SqlClient.SqlException' occurred in EntityFramework.SqlServer.dll but was not handled in user code
Additional information: ????? SQL Server ?,????????????????????????????????????????,?? SQL Server ???????????? (provider: SQL Network Interfaces, error: 52 - ??? Local Database Runtime ?????? SQL Server Express ?????? Local Database Runtime ??????)
here is "manage my account" code behide.
protected void Page_Load()
{
if (!IsPostBack)
{
// Determine the sections to render
var hasLocalPassword = OpenAuth.HasLocalPassword(User.Identity.Name);
setPassword.Visible = !hasLocalPassword;
...
Go to the complete details ...