How to access asp:TextBox with runat=server attribute in javascript
For example you have a textbox which has a default value, and you want to clear that value when the user click on the textbox: <asp:Te...

<asp:TextBox ID="txtBox" runat="server" onclick="clear()" Text="Enter Keyword" /> <script type="text/javascript"> function clear() { document.getElementById("<%=txtBox.ClientID %>").value = ""; } </script>
Post a Comment