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.