i have a problem with an input that sets automatically the name attribute witch blocks a javascript code traitement, this is the input code before running it:
<asp:textbox ID="replace" runat="server" Name="passchk_pass" type="Password" Size="40"/>
and this is how it becomes after running:
<input name="ct$Main$ct$Tab$Edu$replace" id="Main_ct_Tab_Edu_replace" type="Password" size="40">
so im losing the name that i sets befor in order to get a js traitement, how can i stop the input to set automatically the name attribute?