while clicking on button it give me an error "System.NullReferenceException: Object reference not set to an instance of an object"
aspx Code
<body>
    <form id="form1" runat="server">
    <div id="choto">
    </div>
  <asp:Button ID="btn" runat="server" onclick="btn_Click" Text="Submit" />
</form>
</body>
JS code
  <script type="text/javascript">
        document.getElementById("choto").innerHTML = "<input name=txt1 type=\"text\" id=\"txt1\" ru" + "nat=\"server\" />";
</script>
C# code
 protected void btn_Click(object sender, EventArgs e)
        {
           // HtmlInputText txt = new HtmlInputText();
            HtmlInputText txt = (HtmlInputText)FindControl("txt1");
            txt.Value = "Shakeel";
        }
 
    