I'm trying to reset my form using javascript on client side. The code looks like this:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript" >
        function Reset() {
            TextBox1.text = "";
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="Reset()" />
    </div>
    </form>
</body>
</html>

This of course isn't working, I get the error that Button1 is undefinded. I tried looking control's name within browser (by viewing page source) and using that instead of its ID but that didn't work either.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

you need to get the value using getElementById

var mybutton= document.getElementById('Button1');
mybutton.value = ""
link|improve this answer
The error "Button1 is undefined" is gone, but text remains the same, it's not cleared. – AtoMerZ Aug 12 '11 at 10:51
feedback

I advise you to use jQuery for your javascript code. It's a standard anyway.

After you reference jQuery, you may rewrite your JavaScript as follows:

<script type="text/javascript" >
    function resetForm() {
        $("#<%=TextBox1.ClientID %>").val("");
    }
</script>    

If you still do not want to use jQuery, then you need to access your element using its client ID like following:

<script type="text/javascript" >
    function resetForm() {
        document.getElemenyById("<%=TextBox1.ClientID %>").value = "";
    }
</script>    

Also, as @Jon pointed out, you need to either rename your OnClientClick value to resetForm() or rename your JavaScript function.

link|improve this answer
Second solution works (havent't try first yet). – AtoMerZ Aug 12 '11 at 10:58
One Question, what are those odd characters and why won't it work when I remove 'em? – AtoMerZ Aug 12 '11 at 11:07
What odd characters? You mean <% %> these ones? This is a placeholder: the server will insert the value (TextBox1.ClientID) there in the response – Zruty Aug 12 '11 at 12:45
Thanks, Is there any place I can read more on this? I mean placeholder and stuff (not jQuery) or is it jQuery? – AtoMerZ Aug 16 '11 at 14:06
1  
Also, see this link: naspinski.net/post/… – Zruty Aug 16 '11 at 15:01
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.