Fill Text in password typpe textbox
-
Hi , I am using cookies in my login page in ASP.NET to auto-fill in UserID and password if the user is coming to my webpage the second time or third time. The cookie section seems to work fine. It gets both the userid and password value from the cookie on the client machine.However when i try to autofill it it only fills the userid textbox. The password text box never gets filled up. But if i place a label below my password textbox and populate the label's text value with my password that seems to work. It almost seems like i am missing to turn off /on some property in my password text box. Can somebody help me with this please. I am placing the same question the second time in this forum. Regards , Pradhip.S If a Building is Completed then why do they call it BUILDING ??
-
Hi , I am using cookies in my login page in ASP.NET to auto-fill in UserID and password if the user is coming to my webpage the second time or third time. The cookie section seems to work fine. It gets both the userid and password value from the cookie on the client machine.However when i try to autofill it it only fills the userid textbox. The password text box never gets filled up. But if i place a label below my password textbox and populate the label's text value with my password that seems to work. It almost seems like i am missing to turn off /on some property in my password text box. Can somebody help me with this please. I am placing the same question the second time in this forum. Regards , Pradhip.S If a Building is Completed then why do they call it BUILDING ??
Not missing anything, thats just how the password box works.
-
Hi , I am using cookies in my login page in ASP.NET to auto-fill in UserID and password if the user is coming to my webpage the second time or third time. The cookie section seems to work fine. It gets both the userid and password value from the cookie on the client machine.However when i try to autofill it it only fills the userid textbox. The password text box never gets filled up. But if i place a label below my password textbox and populate the label's text value with my password that seems to work. It almost seems like i am missing to turn off /on some property in my password text box. Can somebody help me with this please. I am placing the same question the second time in this forum. Regards , Pradhip.S If a Building is Completed then why do they call it BUILDING ??
It won't accept a .Text value, but you can set it in code using its Attributes: C#: PasswordCtrl.Attributes["value"] = "password"; VB: PasswordCtrl.Attributes("value") = "password" Hope that helps, Marcie http://www.codeproject.com