GIF89;a GIF89;a using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class Controls_TitleTop : System.Web.UI.UserControl { public string Text { get { if ( ViewState[ "Text" ] == null ) return ""; else { return ( string ) ViewState[ "Text" ]; } } set { ViewState[ "Text" ] = value; } } protected void Page_Load ( object sender , EventArgs e ) { this.Controls.Add( DrawTitle( this.Text , "position:absolute; top:252px; width:250px;" )); } private Panel DrawTitle ( string value , string sStyle ) { Panel div_res = new Panel(); Label lb = new Label(); div_res.Attributes.Add( "style" , " Height:17px; font-size:14px; text-align:right; vertical-align:bottom; background-image:url(Images/bg_h1_1.png); background-position:right bottom; background-repeat:no-repeat; " + sStyle ); lb.Text = "" + "     " + value + ""; div_res.Controls.Add( lb ); return div_res; } }