Hi
Generally we are calling ASP.NET controls in javascript like
<SCRIPT LANGUAGE="JAVASCRIPT">
function getValue()
{
var id1=document.getElementById("<%= txtUsername.ClientID %>");
}
</SCRIPT>
<form>
<asp:textbox id="txtUsername" runat="server"></asp:textbox>
</form>
In the above case if we write both asp.net and javascript in the same page the above code works fine. if we write javascirpt code in another page, the clientid is not working, is there any another method to call?
Thanks
Hemadri