Login Problem in IE

This is an open forum for any mojoPortal topics that don't fall into the other categories.

This thread is closed to new posts. You must sign in to post in the forums.
1/11/2008 12:41:44 PM
Gravatar
Total Posts 2

Login Problem in IE

Hy,

I have mojoportal 2.2.3.9 MSSQL and Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433

Everithing is going great .. with Mozilla  but if i try to login in IE 6.0 or 7.0 then the page it is inactive.. the button does not have any action, i changed the login button from Button into LinkButton.. and now i do have action but on Login.aspx.cs when it is making the postback to login the user i see that the TextBox UserName and Password are like empty

 


lblUserID = (SiteLabel)this.LoginCtrl.FindControl("lblUserID");
lblEmail = (SiteLabel)this.LoginCtrl.FindControl("lblEmail");
UserName = (TextBox)this.LoginCtrl.FindControl("UserName");
Password = (TextBox)this.LoginCtrl.FindControl("Password");
RememberMe = (CheckBox)this.LoginCtrl.FindControl("RememberMe");

 

the strange thing it is that with Mozzila the same code it is seeing my values....

I read that if the TextBox in asp 2.0 has the property ReadOnly="true" then u loose the values.. so i added ReadOnly="false"  and the same thing

Thank you in advance!

 

1/11/2008 1:25:07 PM
Gravatar
Total Posts 18439

Re: Login Problem in IE

Hi,

Can you please try getting the code from svn trunk using TortoiseSVN?

I am able to login to this site using IE so I think updating to the latest code will solve the problem for you, though I don't recall seeing this problem before myself.

Thanks,

Joe

1/11/2008 2:03:51 PM
Gravatar
Total Posts 2

Re: Login Problem in IE

Thank for your fast reply!

I discovered the reason: I was having anoterh form inside the main form and Ie was reading data from the second form witch was empty!

Hope this will help!

You must sign in to post in the forums. This thread is closed to new posts.