Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Can login with Login Control (http://www.velocityreviews.com/forums/t367041-can-login-with-login-control.html)

ad 08-28-2006 02:51 AM

Can login with Login Control
 
I used login Controls of VS2005 to develop Web application.
My program will check password and user ID in login.aspx. If the password
is wrong, my program will display an "password is wrong" message to user.
If the ID and password are correct, my program wiill transfer to home.aspx


After my program deployment to server, when user login with correct ID and
wrong pw, it display "password is wrong" message.
But if the ID and password are both correct, it stay in login.aspx with no
"password is wrong" message, but not transfer to home.aspx.

It may be something wrong ! How can I do?



Tim_Mac 08-28-2006 10:18 AM

Re: Can login with Login Control
 
hi ad,
how can we know what's wrong when you didn't post any code?!
please post your web.config and all the code-behind for your login page.

tim



ad 08-28-2006 10:13 PM

Re: Can login with Login Control
 
Thanks, below is my web.config and custum MembershipProvider
Please help me.

<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings>
</appSettings>
<connectionStrings>
......................
</connectionStrings>
<system.web>
<httpRuntime maxRequestLength="2097151"/>
<membership defaultProvider="MyMembershipProvider">
<providers>
<add name="MyMembershipProvider" type="MyMembershipProvider"
minRequiredPasswordLength="7"/>
</providers>
</membership>
<httpHandlers>
....
</httpHandlers>
<siteMap>
<providers>
......
</providers>
</siteMap>
<authentication mode="Forms">
<forms name="HealthCookie" loginUrl="Login.aspx" defaultUrl="~/Home.aspx"
protection="Validation">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<customErrors mode="RemoteOnly"
defaultRedirect="~/ErrorPage/GenericErrorPage.aspx">
.......
</customErrors>
<pages maintainScrollPositionOnPostBack="true"
masterPageFile="~/MasterPage.master"/>
<sessionState mode="InProc"/>
<compilation debug="true">
<buildProviders>
.......
</buildProviders>
<assemblies>
......
</system.web>
</configuration>


public class MyMembershipProvider : MembershipProvider
{
private FormsAuthenticationUserCollection _users = null;
private FormsAuthPasswordFormat _passwordFormat;
//private int _MinRequiredNonAlphanumericCharacters = 0;
private int _MinRequiredPasswordLength = 4;
//private int _MaxInvalidPasswordAttempts = 5;
//private int _PasswordAttemptWindow = 5;


#region Not Implemented Members
public override string ApplicationName
{
.............................

public override MembershipUser GetUser(string username, bool
userIsOnline)
{
DateTime myDate = DateTime.Today;
MembershipUser user = new MembershipUser(
Name, // Provider name
username, // Username
null, // providerUserKey
"aa@wfs.tan.edu.tw", // Email
String.Empty, // passwordQuestion
"Comment", // Comment
true, // isApproved
false, // isLockedOut
DateTime.Now, // creationDate
DateTime.Now, // lastLoginDate
DateTime.Now, // lastActivityDate
DateTime.Now, // lastPasswordChangedDate
new DateTime(1980, 1, 1) // lastLockoutDate
);
return user;

}


public override bool ChangePassword(string username, string
oldPassword, string newPassword)
{
.............................................
}


public override void Initialize(string name,
System.Collections.Specialized.NameValueCollection config)
{
base.Initialize(name, config);
_passwordFormat = getPasswordFormat();
string sMin=config["minRequiredPasswordLength"].ToString();
sMin = WillNs.Util.GetDefault(sMin, "4");
_MinRequiredPasswordLength = int.Parse(sMin);
}

public override bool ValidateUser(string username, string password)
{
bool Authenticated = false;
Authenticated = DMHealth.CheckPW(username, password);
if (Authenticated)
{
//HttpContext.Current.Session.Abandon();
new AuthenticationSuccessEvent(username, this).Raise();
return true;
}
else
{
new AuthenticationFailureEvent(username, this).Raise();
return false;
}
}

protected FormsAuthenticationUserCollection getUsers()
{
if (_users == null)
{
AuthenticationSection section = getAuthenticationSection();
FormsAuthenticationCredentials creds =
section.Forms.Credentials;
_users = section.Forms.Credentials.Users;
}

return _users;
}

protected AuthenticationSection getAuthenticationSection()
{
Configuration config =
WebConfigurationManager.OpenWebConfiguration("~");
return
(AuthenticationSection)config.GetSection("system.w eb/authentication");
}

protected FormsAuthPasswordFormat getPasswordFormat()
{
return
getAuthenticationSection().Forms.Credentials.Passw ordFormat;
}
protected MembershipSection getMembershipSection()
{
Configuration config =
WebConfigurationManager.OpenWebConfiguration("~");
return
(MembershipSection)config.GetSection("system.web/Membership");
}
}





"Tim_Mac" <tim.mackey@community.nospam> 级糶秎ン穝籇:uPjHGtoyGHA.4972@TK2MSFTNGP03.phx.g bl...
> hi ad,
> how can we know what's wrong when you didn't post any code?!
> please post your web.config and all the code-behind for your login page.
>
> tim
>




Tim_Mac 08-29-2006 08:44 AM

Re: Can login with Login Control
 
hi Ad,
i notice you have ~/home.aspx as your defaultUrl.
how is your web site deployed in IIS. as a web site? virtual directory?
or just in a folder?
the reason i ask is because the ~ syntax refers to the root of the web
application. if you have it deployed inside a folder without creating an
application in IIS, the ~ url you use would refer to the wrong page and
possibly a 404.

tim



ad 08-29-2006 10:44 AM

Re: Can login with Login Control
 
Thanks,
i deployed my project to as an application of IIS.
But maybe the ~/ is not need.
Have there any reason cause repeating login?




"Tim_Mac" <tim.mackey@community.nospam> 级糶秎ン穝籇:uz7GYd0yGHA.4368@TK2MSFTNGP02.phx.g bl...
> hi Ad,
> i notice you have ~/home.aspx as your defaultUrl.
> how is your web site deployed in IIS. as a web site? virtual directory?
> or just in a folder?
> the reason i ask is because the ~ syntax refers to the root of the web
> application. if you have it deployed inside a folder without creating an
> application in IIS, the ~ url you use would refer to the wrong page and
> possibly a 404.
>
> tim
>




Tim_Mac 08-29-2006 04:22 PM

Re: Can login with Login Control
 
hi Ad,
sorry i'm not sure what you mean by repeating login..
tim



ad 08-30-2006 08:40 AM

Re: Can login with Login Control
 
I have remove the ~\ form the defaultUrl, but the user still repeating
login.
That is the login page appear again after the user login sucessfully, the
web application dose not direct to defaultUrl


"Tim_Mac" <tim.mackey@community.nospam> 级糶秎ン穝籇:uzZwQd4yGHA.2300@TK2MSFTNGP05.phx.g bl...
> hi Ad,
> sorry i'm not sure what you mean by repeating login..
> tim
>




Tim_Mac 08-30-2006 04:19 PM

Re: Can login with Login Control
 
hi ad ,
you could try adding an event handler for the OnLoggedIn event of your Login
control.
then you can use Response.Redirect to go wherever.

hope this helps
tim


"ad" <flying@wfes.tcc.edu.tw> wrote in message
news:OX2QLABzGHA.4648@TK2MSFTNGP04.phx.gbl...
>I have remove the ~\ form the defaultUrl, but the user still repeating
>login.
> That is the login page appear again after the user login sucessfully, the
> web application dose not direct to defaultUrl
>
>
> "Tim_Mac" <tim.mackey@community.nospam>
> 级糶秎ン穝籇:uzZwQd4yGHA.2300@TK2MSFTNGP05.phx.g bl...
>> hi Ad,
>> sorry i'm not sure what you mean by repeating login..
>> tim
>>

>
>




ad 08-31-2006 05:24 AM

Re: Can login with Login Control
 
Hi, Tim
Today I find a regularity on the problem pc.
If I use http://health/HealthWeb (where health is computer name, HealthWeb
is application name), the repeating login occur, but if I use
http://127.0.0.1/HealthWeb or http://192.168.0.12/HealthWeb, it run ok.
But if I call http://health/HealthWeb from another machine, it run ok.

It's really something strange!

Have some advice?


"Tim_Mac" <tim.mackey@community.nospam> 级糶秎ン穝籇:egjbFAFzGHA.1292@TK2MSFTNGP03.phx.g bl...
> hi ad ,
> you could try adding an event handler for the OnLoggedIn event of your
> Login control.
> then you can use Response.Redirect to go wherever.
>
> hope this helps
> tim
>
>
> "ad" <flying@wfes.tcc.edu.tw> wrote in message
> news:OX2QLABzGHA.4648@TK2MSFTNGP04.phx.gbl...
>>I have remove the ~\ form the defaultUrl, but the user still repeating
>>login.
>> That is the login page appear again after the user login sucessfully, the
>> web application dose not direct to defaultUrl
>>
>>
>> "Tim_Mac" <tim.mackey@community.nospam> 级糶秎ン穝籇:uzZwQd4yGHA.2300@TK2MSFTNGP05.phx.g bl...
>>> hi Ad,
>>> sorry i'm not sure what you mean by repeating login..
>>> tim
>>>

>>
>>

>
>




Tim_Mac 08-31-2006 05:46 PM

Re: Can login with Login Control
 
hi,
you could try resetting the browser settings on that PC. it could be caused
by a different security zone for the 'health' web site. i can't imagine
exactly what would prevent the page loading, but perhaps cookies are
disabled or something.

all i can suggest is my previous post to manually redirect the user to
whatever page you want them to, if it is still causing problems.

good luck
tim

"ad" <flying@wfes.tcc.edu.tw> wrote in message
news:uSkd22LzGHA.5048@TK2MSFTNGP05.phx.gbl...
> Hi, Tim
> Today I find a regularity on the problem pc.
> If I use http://health/HealthWeb (where health is computer name,
> HealthWeb is application name), the repeating login occur, but if I use
> http://127.0.0.1/HealthWeb or http://192.168.0.12/HealthWeb, it run ok.
> But if I call http://health/HealthWeb from another machine, it run ok.
>
> It's really something strange!
>
> Have some advice?
>
>
> "Tim_Mac" <tim.mackey@community.nospam>
> 级糶秎ン穝籇:egjbFAFzGHA.1292@TK2MSFTNGP03.phx.g bl...
>> hi ad ,
>> you could try adding an event handler for the OnLoggedIn event of your
>> Login control.
>> then you can use Response.Redirect to go wherever.
>>
>> hope this helps
>> tim
>>
>>
>> "ad" <flying@wfes.tcc.edu.tw> wrote in message
>> news:OX2QLABzGHA.4648@TK2MSFTNGP04.phx.gbl...
>>>I have remove the ~\ form the defaultUrl, but the user still repeating
>>>login.
>>> That is the login page appear again after the user login sucessfully,
>>> the web application dose not direct to defaultUrl
>>>
>>>
>>> "Tim_Mac" <tim.mackey@community.nospam>
>>> 级糶秎ン穝籇:uzZwQd4yGHA.2300@TK2MSFTNGP05.phx.g bl...
>>>> hi Ad,
>>>> sorry i'm not sure what you mean by repeating login..
>>>> tim
>>>>
>>>
>>>

>>
>>

>
>





All times are GMT. The time now is 06:11 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57