
When you need to dynamically control the HTML that is generated from your ASP.Net page or control, a famous technique to do that is to override the render function protected override void Render(HtmlTextWriter writer) It is a function where you can get a great power over your control, the function simply sends HtmlTextWriter which is a stream where you can write anything and it will appear on client screen as we can see in the code below.
|