> I have an asp:textbox that when the page is rendered and I do some
> javascript, the name of the object is changed. It went from tbQuantity to
[quoted text clipped - 4 lines]
>
> TIA - Jeff.
inject javascript using the server code
<script>
....
document.getElementById(<%=tbQuantity.ClientID%>).value='';
....
Mufasa - 25 Oct 2007 21:25 GMT
That worked perfect. Thank you.
>> I have an asp:textbox that when the page is rendered and I do some
>> javascript, the name of the object is changed. It went from tbQuantity to
[quoted text clipped - 11 lines]
> document.getElementById(<%=tbQuantity.ClientID%>).value='';
> ....