Telerik blogs

Latest

  • Release

    Send Telerik Report as email attachment

    The Report Viewers (Win and Web) do not support sending of reports via e-mail out-of-the-box. To mail a report you have to first render the report programmatically into a convenient format and then attach it to a mail message. Here is a possible way of how to achieve this by using the SmtpClient object: void MailReport(Telerik.Reporting.Report report, string from, string to, string subject, string body){string mimeType; string extension; Encoding encoding; byte[] reportBytes = ReportProcessor.Render("PDF", report, null, out mimeType, out extension, out encoding); MemoryStream ms = new MemoryStream(reportBytes); ms.Position = 0; Attachment attachment = new Attachment(ms, report.Name + "." + extension); MailMessage msg = new MailMessage(from, to, subject, body); msg.Attachments.Add(attachment); SmtpClient client = new SmtpClient(smptHost); ...
    September 02, 2008 1 min read
  • Release

    Telerik Reporting Q2 2008 SP1 is now live

    Hello People,   My name is Rossen Hristov and I am a developer at the Telerik Reporting team. This is my first post and in it I would like to share some good news with you -- Telerik Reporting Q2 2008 SP1 is now officially live. We have spent the last month or so making sure that most of the issues that you have reported have been addressed carefully. This Service Pack is by far the largest we have delivered in terms of issues fixed and I would like to thank you for the great feedback that you have provided during the past...
    August 28, 2008 2 min read
  • Release

    New Feature: Full EntityDataSource support in RadGrid for ASP.NET AJAX

    I'm pleased to announce that the next version of RadGrid for ASP.NET AJAX will support natively EntityDataSource. All operations like paging, sorting and filtering will be applied directly on the data-base server:   and of course you will able to insert, update and delete records completely codeless. Enjoy! [Download]...
    August 27, 2008 1 min read
  • Release

    RadControls for Silverlight 2 Q2 2008 Beta 2

    With this Beta2 release RadControls for Silverlight has been enhanced with several brand new controls:   RadTimePicker RadTimePicker is an easy to use control allowing you to integrate time selection in your web applications. The control exposes an advanced parser that converts numeric/alpha-numeric values into a valid time. Using the templates of the RadTimePicker control you can arrange the items in your very custom manner. The control also supports defining selectable time-range through its Start/EndTime and Interval properties, or binding to a collection containing pre-defined values. RadExpander  RadExpander control is a flexible control that helps you save space and achieve an easier navigation through...
    August 27, 2008 1 min read
  • Release

    Yet another update of RadControls for ASP.NET Ajax DynamicData support

    ASP.NET Dynamic Data has just gone official with the SP1 release of Visual Studio 2008 and .NET 3.5. We have just released updated version of our Dynamic Data bits which is tested against the official release and has few minor improvements (such as implementation of the DataControl property). Get it from here....
    August 13, 2008 1 min read