or

| System.IO.MemoryStream ms = new System.IO.MemoryStream(); |
| this.chart.Save(ms, System.Drawing.Imaging.ImageFormat.Png); |
| this.Page.Response.Clear(); |
| this.Page.Response.ClearHeaders(); |
| this.Page.Response.AddHeader("Content-disposition", "attachment; filename=Chart.png"); |
| this.Page.Response.AddHeader("Content-type", "image/png"); |
| this.Page.Response.BinaryWrite(ms.ToArray()); |
| this.Page.Response.End(); |
<telerik:GridButtonColumn CommandName="Remove" FilterControlAltText="Filter Remove column" Text="Remove" UniqueName="Remove"><br>
</telerik:GridButtonColumn>