Latest Indian Movies Songs Download,Telugu,Kannada,Hollywood Movie ringtones,telugu movie trailers,tamil movie latest trailers

Monday, 10 August 2015

Build Html Tags using C# asp.net

No comments :

protected override void Render(HtmlTextWriter output)
{
StringBuilder sb = new StringBuilder();
       
sb.AppendLine("<object type='application/x-mplayer2' height='100' width='210'><param name='src' value=''/></object>");

output.BeginRender();
output.Write(sb.ToString());
output.EndRender();
}

If you want to build any html5 tags with css using stringbuilder and HTMLtextwriter are possible to build

No comments :

Post a Comment