Wednesday 6 November 2013

Text Notepad in asp.net

Text Notepad in asp.net :


 aspx :


  <div align="center">

          <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
          &nbsp;&nbsp;&nbsp;&nbsp;
         <asp:Button ID="bntNotePad" runat="server" Text="NotePad"                                        OnClick="bntNotePad_Click"/>
 </div>

aspx.cs :



  protected void bntNotePad_Click(object sender, EventArgs e)
        {
            System.IO.File.WriteAllText(@"E:\Test.txt",txtName.Text);
            
        }





No comments:

Post a Comment