I have a asp Login control on the page which is customized.

inside the Login cotron we have Username and password textboxes.

I want to find username and password controls inside a javascript fucntion.

var Username= document.getElementById("<%=UserName.ClientID%>");

But this code does not complie and gives complie time error UserName not found in this context.

and if i write the client side id :

var username = document.getElementById("login_LoginUser_UserName");

it executes properly, but i want to find the client id rather than using a hardcode id here.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The only way which I know is:

 var Username = document.getElementById("<%= Login1.FindControl("UserName").ClientID %>");
 var Password = document.getElementById("<%= Login1.FindControl("Password").ClientID %>");

It will returns the client Id of the controls inside of Login control.

link|improve this answer
why would you post codebehind segments when its javascript the OP is looking for? – f0x Sep 29 '11 at 7:42
Who said that it's only codebehind? var Username= document.getElementById("<%= Login1.FindControl("UserName").ClientID %>");. Is it acceptable? – Samich Sep 29 '11 at 7:45
that comment is worth more the OP than your entire answer ;) – f0x Sep 29 '11 at 7:45
+1 much better. – f0x Sep 29 '11 at 7:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.