This is a migrated thread and some comments may be shown as answers.

RadFormDecorator is not really free? It prompt me to buy it.

3 Answers 89 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
Cheung Tat Ming
Top achievements
Rank 1
Cheung Tat Ming asked on 05 Jun 2011, 06:36 PM
Today i am happy to found telerik's FormDecorator to style my standard asp.net web control, and it's free, there is no reason i don't give it a try.

I open a new blank new ASP.NET 4.0 project to test, but after a 10+ times postback.
telerik control's response.write a prompt message about : ( To remove this message, please purchase a developer version )

I have Attached a screenshot below.

Below is the markup of my test project.
And i have few question,

1. Is it the RadScriptManager1 and RadSkinManager1 not include in free FormDecorator suite?
2. I have remove the RadScriptManager1 ,but it show error
:
"The control with ID 'RadFormDecorator1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it."
So, do i have to use the classic ScriptManager come from ASP.NET 4.0?

3. Where can i add my free license information for register? web.config? of place a app_license.dll in /bin folder like "De*Express" and "Comp*nentArt" ?

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true">
    </telerik:RadSkinManager>
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Office2007"
        DecoratedControls="All" />
    <asp:Button ID="Button1" runat="server" Text="Button" />
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    <asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1">
    </asp:GridView>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:AdventureWorksLT2008ConnectionString %>"
        SelectCommand="SELECT top 10 * FROM [SalesLT].[Customer]"></asp:SqlDataSource>
    </form>
</body>
</html>

And
Default.aspx.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Telerik.Web.UI;
 
public partial class Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
 
    }
}

and web.config
<?xml version="1.0"?>
<configuration>
  <connectionStrings>
    <add name="AdventureWorksLT2008ConnectionString" connectionString="Data Source=LOCALHOST\SQLEXPRESS;Initial Catalog=AdventureWorksLT2008;Integrated Security=True" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
    </compilation>
    <pages>
      <controls>
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
      </controls>
    </pages>
    <httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
    </httpHandlers>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
    </handlers>
  </system.webServer>
</configuration>

3 Answers, 1 is accepted

Sort by
0
Lini
Telerik team
answered on 06 Jun 2011, 04:02 PM
Hi,

The message is coming from the RadSkinManager control you have on the page. The free RadFormDecorator control build also includes the trial versions of all other controls from the RadControls for ASP.NET AJAX suite. In this case the RadSkinManager and the RadComboBox control inside it are displaying the trial message. If you remove the RadSkinManager or set its ShowChooser property to "false" the trial messages will stop.

Greetings,
Lini
the Telerik team
Explore the entire set of ASP.NET AJAX controls we offer here and browse the myriad online demos to learn more about the components and the features they incorporate.
0
Cheung Tat Ming
Top achievements
Rank 1
answered on 06 Jun 2011, 06:16 PM
Thanks you for reply,
but how about the RadScriptManager ? is it free for use?
Or i must use ScriptManager come from ASP.NET AJAX instead?

thanks you for great web control!
 

0
Lini
Telerik team
answered on 07 Jun 2011, 07:57 AM
Hello,

You can continue to use the RadScriptManager and RadStyleSheetManager controls - they will not show a trial message in the free FormDecorator build.

All the best,
Lini
the Telerik team
Explore the entire set of ASP.NET AJAX controls we offer here and browse the myriad online demos to learn more about the components and the features they incorporate.
Tags
FormDecorator
Asked by
Cheung Tat Ming
Top achievements
Rank 1
Answers by
Lini
Telerik team
Cheung Tat Ming
Top achievements
Rank 1
Share this question
or