hi,
i have problem with membership expired.
I have one IP Address Port "80" and HostName "*"
If I used one IP for more the same websites like this:
Ip Addres: 1.1.1.2.5.6
domain1->1.1.1.2.5.6
domain2->1.1.1.2.5.6
domain3->1.1.1.2.5.6
In this case membership logout when user in other website login.
Example:
domain1 is logged in
domain2 is now login.
If check domain1 is user logout
My code:
Login Login1 = (Login)LoginView1.FindControl("Login1");
TextBox UserName = (TextBox)Login1.FindControl("UserName");
TextBox Password = (TextBox)Login1.FindControl("Password");
string username = UserName.Text.Trim();
string pass = Password.Text.Trim();
/* var appname = from t1 in db.aspnet_Users
join t2 in db.aspnet_Applicat ...
Go to the complete details ...