Hi,
How I can programatically get text from password and username edit
boxes within Login control?
Thanks
Husam Al-A''araj - 26 Jun 2007 20:45 GMT
hi
check this
http://www.codeproject.com/Purgatory/logincontrol.asp
Husam Al-Aáraj
www.aaraj.net
> Hi,
>
> How I can programatically get text from password and username edit
> boxes within Login control?
>
> Thanks
Mike - 26 Jun 2007 21:16 GMT
Thanks Husam.
I didn't explain so well, I am not looking for new login control, my
question is in relation with asp.net 2.0 login control.
Mike
>hi
>check this
[quoted text clipped - 9 lines]
>>
>> Thanks
Mike - 27 Jun 2007 10:43 GMT
Can somebody help me in this?
Thanks
>Hi,
>
>How I can programatically get text from password and username edit
>boxes within Login control?
>
>Thanks
BobS - 29 Aug 2007 22:16 GMT
use object browser to look at System.Web.UI.WebControls.Login (find it by
doing a search for 'login')
I built a test page with login, button and textbox controls. The
button_click contains
TextBox1.Text = Login1.UserName
B o b
> How I can programatically get text from password and username edit
> boxes within Login control?
abby - 17 Nov 2008 23:11 GMT
If youre using a login control, u can get the ID from the MembershipUser class as
Member user = MembershipUser.getUser();
string userID = user.UserName.toString();
string password=user.Password.toString();
THE ABOVE SYNTAX MAY NOT BE Exact, but its something like this one. Hope you must've got the idea.
abby - 17 Nov 2008 23:11 GMT
If youre using a login control, u can get the ID from the MembershipUser class as
Member user = MembershipUser.getUser();
string userID = user.UserName.toString();
string password=user.Password.toString();
THE ABOVE SYNTAX MAY NOT BE Exact, but its something like this one. Hope you must've got the idea.