Created
November 23, 2011 12:31
-
-
Save Znow/1388562 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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