package $rootnamespace$;

import System.ComponentModel.*;
import System.Web.UI.*;
import System.Web.UI.WebControls.*;

/**
 * Summary description for $safeitemrootname$.
 */
/** 
 * @attribute DefaultProperty("Text")
 * @attribute ToolboxData("<{0}:$safeitemrootname$ runat=server></{0}:$safeitemrootname$>") 
 */
public class $safeitemrootname$ 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);
    }
}
