package $safeprojectname$;

import System.Web.UI.*;
import System.Web.UI.WebControls.*;
import System.ComponentModel.*;

/**
 * Summary description for WebCustomControl1.
 */
/** 
 * @attribute DefaultProperty("Text")
 * @attribute ToolboxData("<{0}:WebCustomControl1 runat=server></{0}:WebCustomControl1>") 
 */
public class WebCustomControl1 extends System.Web.UI.WebControls.WebControl
{
	private String text = "";

	/** 
	 * @attribute Bindable(true) 
	 * @attribute Category("Appearance") 
	 * @attribute DefaultValue("") 
	 * @property
	 */
	public String get_Text() 
	{
		return text;
	}

	/** @property */
	public void set_Text(String t) 
	{
		text = t;
	}

	/**
	 * Render this control to the output parameter specified.
	 */
	protected void Render(HtmlTextWriter output)
	{
		output.Write(text);
	}
}
