Skip to content

Instantly share code, notes, and snippets.

@vncloudsco
Created November 8, 2019 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vncloudsco/daa63aa626f74bddd0adcd48d2f83d84 to your computer and use it in GitHub Desktop.
Save vncloudsco/daa63aa626f74bddd0adcd48d2f83d84 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text.RegularExpressions;
using System.Text;
using System.IO;
public partial class hello : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = TextArea1.Text.ToString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment