Skip to content

Instantly share code, notes, and snippets.

@Znow
Created November 23, 2011 12:31
Show Gist options
  • Save Znow/1388562 to your computer and use it in GitHub Desktop.
Save Znow/1388562 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace planner_newsletter.planner_newsletter_control
{
public partial class PlannerNewsletterControl : System.Web.UI.UserControl
{
private string _email;
public string email
{
get { return _email; }
set { _email = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
TextBox1.Text = email;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment