Skip to content

Commit b257e49

Browse files
committed
docs(installation): add license key activation instructions to installer guides
1 parent 7819619 commit b257e49

File tree

3 files changed

+104
-16
lines changed

3 files changed

+104
-16
lines changed

getting-started/installation/install-from-nuget.md

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,16 @@ The following prerequisites are required for accomplishing the scenario in this
3737

3838
1. If a new user, [create a Telerik account](https://www.telerik.com/account/).
3939

40-
## Step 1: Add the Telerik NuGet Feed to Visual Studio
40+
## Install Telerik UI for ASP.NET AJAX
41+
42+
- [Step 1: Add the Telerik NuGet Feed to Visual Studio](#step-1-add-the-telerik-nuget-feed-to-visual-studio)
43+
- [Step 2: Install Telerik UI for ASP.NET AJAX](#step-2-install-telerik-ui-for-asp-net-ajax)
44+
- [Step 3: Setup Your License Key](#step-3-setup-your-license-key)
45+
- [Step 4: Add the Editor to Your Project](#step-4-add-the-editor-to-your-project)
46+
- [Step 5: Add the HtmlChart to Your Project](#step-5-add-the-htmlchart-to-your-project)
47+
- [Step 6: Style the Controls](#step-6-style-the-controls)
48+
49+
### Step 1: Add the Telerik NuGet Feed to Visual Studio
4150

4251
Adding the Telerik NuGet feed to Visual Studio allows you to quickly install the required Telerik packages to your project.
4352

@@ -59,7 +68,7 @@ To configure the Telerik NuGet Feed in Visual Studio:
5968

6069
![Visual Studio NuGet Package Manager and Telerik NuGet Feed](images/telerik-nuget-feed-in-npm.png)
6170

62-
## Step 2: Install Telerik UI for ASP.NET AJAX
71+
### Step 2: Install Telerik UI for ASP.NET AJAX
6372

6473
Now that you have successfully added the Telerik NuGet feed as a package source, you need to authenticate your local NuGet instance, display the available packages, and install Telerik UI for ASP.NET AJAX:
6574

@@ -88,7 +97,22 @@ Now that you have successfully added the Telerik NuGet feed as a package source,
8897
>
8998
> Additionally, the NuGet does not install the [Visual Studio Extensions for Telerik® UI for ASP.NET AJAX]({%slug introduction/radcontrols-for-asp.net-ajax-fundamentals/integration-with-visual-studio/visual-studio-extensions/overview%}), which are valuable tools for WebForms developers working with the Telerik ASP.NET Web Forms components. However, these extensions can be downloaded and installed as a separate product from the [Visual Studio Gallery](https://marketplace.visualstudio.com/items?itemName=TelerikInc.TelerikASPNETAJAXVSExtensions).
9099
91-
## Step 3: Add the Editor to Your Project
100+
### Step 3: Setup Your License Key
101+
102+
>note Starting with Telerik UI for ASP.NET AJAX 2025 Q1 release, you must activate the UI components by providing a license key file. Previous versions do not require a license key.
103+
104+
To download and install your Telerik license key:
105+
106+
1. Go to the [License Keys](https://www.telerik.com/account/your-licenses/license-keys) page in your Telerik account.
107+
2. Click the **Download License Key** button.
108+
3. Save the `telerik-license.txt` file to:
109+
* `%AppData%\Telerik\telerik-license.txt`, for example (`C:\Users\...\AppData\Roaming\Telerik\telerik-license.txt`)
110+
111+
This will make the license key available to all Telerik .NET apps that you develop on your local machine.
112+
113+
The [Telerik License Key]({%slug licensing/license-key%}) article provides additional details on installing and updating your Telerik license key in different scenarios. Automatic license key maintenance is more effective and recommended in the long run.
114+
115+
### Step 4: Add the Editor to Your Project
92116

93117
The Web Forms Site created through the Telerik project templates includes all basic references and registrations required by the Telerik UI for ASP.NET AJAX controls, including a [ScriptManager control]({%slug scriptmanager/overview%}), which is required by all AJAX controls. That's why you can add the [Editor](https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx) to the page in a simple way as demonstrated in this step.
94118

@@ -118,7 +142,7 @@ The Web Forms Site created through the Telerik project templates includes all ba
118142
>caption Add the Editor to the page
119143
![Add the Editor to the page](images/getting-started-editor.png)
120144

121-
## Step 4: Add the HtmlChart to Your Project
145+
### Step 5: Add the HtmlChart to Your Project
122146

123147
Let’s dive a little bit deeper in the configuration of the controls from the UI for ASP.NET AJAX suite. By following the steps below, you will create a data-bound [HtmlChart]({%slug htmlchart/overview%}). You will also add a handy tooltip that shows the values from a custom data field.
124148

@@ -261,7 +285,7 @@ The sample uses a `DataTable`, but you can bind the HtmlChart to a [preferred da
261285
>caption Bound HtmlChart with a custom Tooltip template
262286
![Bound HtmlChart with a custom Tooltip template](images/getting-started-htmlchart.png)
263287
264-
## Step 5: Style the Controls
288+
### Step 6: Style the Controls
265289
266290
Telerik UI for ASP.NET AJAX provides more than [20 predefined skins]({% slug introduction/radcontrols-for-asp.net-ajax-fundamentals/controlling-visual-appearance/how-to-load-skins-from-external-assemblies %}) that allow you to change the look and feel of each component. To use the desired skin, set the skin name as the `Skin` property value of the control:
267291

getting-started/installation/install-from-zip.md

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,17 @@ The following prerequisites are required for accomplishing the scenario in this
3636

3737
1. If a new user, [create a Telerik account](https://www.telerik.com/account/).
3838

39-
## Step 1: Install Telerik UI for ASP.NET AJAX
39+
## Install Telerik UI for ASP.NET AJAX
40+
41+
- [Step 1: Download the ZIP Archive](#step-1-download-the-zip-archive)
42+
- [Step 2: Upgrade an Existing Telerik UI for ASP.NET AJAX Project](#step-2-upgrade-an-existing-telerik-ui-for-asp-net-ajax-project)
43+
- [Step 3: Setup Your License Key](#step-3-setup-your-license-key)
44+
- [Step 4: Add the Editor to Your Project](#step-4-add-the-editor-to-your-project)
45+
- [Step 5: Add the HtmlChart to Your Project](#step-5-add-the-htmlchart-to-your-project)
46+
- [Step 6: Style the Controls](#step-6-style-the-controls)
47+
48+
49+
### Step 1: Download the ZIP Archive
4050

4151
After successfully providing the prerequisites, you will install the suite from the ZIP file without IIS running:
4252

@@ -50,7 +60,7 @@ After successfully providing the prerequisites, you will install the suite from
5060
>
5161
> Additionally, the zip does not install the [Visual Studio Extensions for Telerik® UI for ASP.NET AJAX]({%slug introduction/radcontrols-for-asp.net-ajax-fundamentals/integration-with-visual-studio/visual-studio-extensions/overview%}), which are valuable tools for WebForms developers working with the Telerik ASP.NET Web Forms components. However, these extensions can be downloaded and installed as a separate product from the [Visual Studio Gallery](https://marketplace.visualstudio.com/items?itemName=TelerikInc.TelerikASPNETAJAXVSExtensions).
5262
53-
## Step 2: Upgrade an Existing Telerik UI for ASP.NET AJAX Project
63+
### Step 2: Upgrade an Existing Telerik UI for ASP.NET AJAX Project
5464

5565
The files from the ZIP installation are usually used for manual upgrading of an already existing Telerik UI for ASP.NET AJAX Project. The following steps ensure a safe upgrade:
5666

@@ -68,7 +78,22 @@ The files from the ZIP installation are usually used for manual upgrading of an
6878

6979
1. Make sure you have all [necessary `web.config` registrations]({%slug general-information/web-config-settings-overview%}).
7080

71-
## Step 3: Add the Editor to Your Project
81+
### Step 3: Setup Your License Key
82+
83+
>note Starting with Telerik UI for ASP.NET AJAX 2025 Q1 release, you must activate the UI components by providing a license key file. Previous versions do not require a license key.
84+
85+
To download and install your Telerik license key:
86+
87+
1. Go to the [License Keys](https://www.telerik.com/account/your-licenses/license-keys) page in your Telerik account.
88+
2. Click the **Download License Key** button.
89+
3. Save the `telerik-license.txt` file to:
90+
* `%AppData%\Telerik\telerik-license.txt`, for example (`C:\Users\...\AppData\Roaming\Telerik\telerik-license.txt`)
91+
92+
This will make the license key available to all Telerik .NET apps that you develop on your local machine.
93+
94+
The [Telerik License Key]({%slug licensing/license-key%}) article provides additional details on installing and updating your Telerik license key in different scenarios. Automatic license key maintenance is more effective and recommended in the long run.
95+
96+
### Step 4: Add the Editor to Your Project
7297

7398
The Web Forms Site created through the Telerik project templates includes all basic references and registrations required by the Telerik UI for ASP.NET AJAX controls, including a [ScriptManager control]({%slug scriptmanager/overview%}), which is required by all AJAX controls. That's why you can add the [Editor](https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx) to the page in a simple way as demonstrated in this step.
7499

@@ -98,7 +123,7 @@ The Web Forms Site created through the Telerik project templates includes all ba
98123
>caption Add the Editor to the page
99124
![Add the Editor to the page](images/getting-started-editor.png)
100125

101-
## Step 4: Add the HtmlChart to Your Project
126+
### Step 5: Add the HtmlChart to Your Project
102127

103128
Let’s dive a little bit deeper in the configuration of the controls from the UI for ASP.NET AJAX suite. By following the steps below, you will create a data-bound [HtmlChart]({%slug htmlchart/overview%}). You will also add a handy tooltip that shows the values from a custom data field.
104129

@@ -241,7 +266,7 @@ The sample uses a `DataTable`, but you can bind the HtmlChart to a [preferred da
241266
>caption Bound HtmlChart with a custom Tooltip template
242267
![Bound HtmlChart with a custom Tooltip template](images/getting-started-htmlchart.png)
243268
244-
## Step 5: Style the Controls
269+
### Step 6: Style the Controls
245270
246271
Telerik UI for ASP.NET AJAX provides more than [20 predefined skins]({% slug introduction/radcontrols-for-asp.net-ajax-fundamentals/controlling-visual-appearance/how-to-load-skins-from-external-assemblies %}) that allow you to change the look and feel of each component. To use the desired skin, set the skin name as the `Skin` property value of the control:
247272

getting-started/installation/install-using-msi.md

Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,18 @@ The following prerequisites are required for accomplishing the scenario in this
3232

3333
1. If a new user, [create a Telerik account](https://www.telerik.com/account/).
3434

35-
## Step 1: Install Telerik UI for ASP.NET AJAX
35+
## Install Telerik UI for ASP.NET AJAX
36+
37+
- [Step 1: Download and Install the MSI installer](#step-1-download-and-install-the-msi-installer)
38+
- [Step 2: Download the Demos](#step-2-download-the-demos)
39+
- [Step 3: Create the ASP.NET AJAX Project](#step-3-create-the-asp-net-ajax-project)
40+
- [Step 4: Setup Your License Key](#step-4-setup-your-license-key)
41+
- [Step 5: Add the Editor to Your Project](#step-5-add-the-editor-to-your-project)
42+
- [Step 6: Add the HtmlChart to Your Project](#step-6-add-the-htmlchart-to-your-project)
43+
- [Step 7: Style the Controls](#step-7-style-the-controls)
44+
45+
46+
### Step 1: Download and Install the MSI installer
3647

3748
1. Log into your [Telerik account](https://www.telerik.com/account/product-download?product=RCAJAX).
3849

@@ -53,7 +64,7 @@ The following prerequisites are required for accomplishing the scenario in this
5364
>
5465
> The MSI also installs the [Visual Studio Extensions for Telerik® UI for ASP.NET AJAX]({%slug introduction/radcontrols-for-asp.net-ajax-fundamentals/integration-with-visual-studio/visual-studio-extensions/overview%}) to help developers when creating, developing and/or upgrading webforms projects (web site and web application) with the Telerik® UI for ASP.NET AJAX.
5566
56-
## Step 2: Download the Demos
67+
### Step 2: Download the Demos
5768

5869
1. From the **Resources** section of same page, download the MSI installation for the Telerik UI for ASP.NET AJAX examples. Once you install them on your machine, you can launch the live demos in either of the following ways:
5970

@@ -62,7 +73,7 @@ The following prerequisites are required for accomplishing the scenario in this
6273

6374
1. Load the **Live Examples** solution to your Visual Studio and start the project by clicking `F5`. The fastest way to load the examples is by using the **Start Menu** by selecting **Telerik** > **UI for ASP.NET AJAX RX YYYY -> Open Sample Web Site in Visual Studio**. Visual Studio will locally start the **Live Demos** by using the integrated ASP.NET Development Server.
6475

65-
## Step 3: Create the ASP.NET AJAX Project
76+
### Step 3: Create the ASP.NET AJAX Project
6677

6778
Telerik UI for ASP.NET AJAX integrates into Visual Studio through the Telerik [Visual Studio Extensions]({%slug introduction/radcontrols-for-asp.net-ajax-fundamentals/integration-with-visual-studio/visual-studio-extensions/overview%}). The Telerik templates allow you to effortlessly create a pre-configured Telerik UI project that contains all required resources which enable you to use the Telerik controls.
6879

@@ -83,7 +94,35 @@ Telerik UI for ASP.NET AJAX integrates into Visual Studio through the Telerik [V
8394
>caption Create the new ASP.NET project
8495
![Create a new project](images/getting-started-project-wizard.gif)
8596

86-
## Step 4: Add the Editor to Your Project
97+
>note Starting with Telerik UI for ASP.NET AJAX 2025 Q1 release, you must activate the UI components by providing a license key file. Previous versions do not require a license key.
98+
99+
To download and install your Telerik license key:
100+
101+
1. Go to the [License Keys](https://www.telerik.com/account/your-licenses/license-keys) page in your Telerik account.
102+
1. Click the **Download License Key** button.
103+
1. Save the `telerik-license.txt` file to:
104+
* `%AppData%\Telerik\telerik-license.txt`, for example (`C:\Users\...\AppData\Roaming\Telerik\telerik-license.txt`)
105+
106+
This will make the license key available to all Telerik .NET apps that you develop on your local machine.
107+
108+
The [Telerik License Key]({%slug licensing/license-key%}) article provides additional details on installing and updating your Telerik license key in different scenarios. Automatic license key maintenance is more effective and recommended in the long run.
109+
110+
### Step 4: Setup Your License Key
111+
112+
>note Starting with Telerik UI for ASP.NET AJAX 2025 Q1 release, you must activate the UI components by providing a license key file. Previous versions do not require a license key.
113+
114+
To download and install your Telerik license key:
115+
116+
1. Go to the [License Keys](https://www.telerik.com/account/your-licenses/license-keys) page in your Telerik account.
117+
2. Click the **Download License Key** button.
118+
3. Save the `telerik-license.txt` file to:
119+
* `%AppData%\Telerik\telerik-license.txt`, for example (`C:\Users\...\AppData\Roaming\Telerik\telerik-license.txt`)
120+
121+
This will make the license key available to all Telerik .NET apps that you develop on your local machine.
122+
123+
The [Telerik License Key]({%slug licensing/license-key%}) article provides additional details on installing and updating your Telerik license key in different scenarios. Automatic license key maintenance is more effective and recommended in the long run.
124+
125+
### Step 5: Add the Editor to Your Project
87126

88127
The Web Forms Site created through the Telerik project templates includes all basic references and registrations required by the Telerik UI for ASP.NET AJAX controls, including a [ScriptManager control]({%slug scriptmanager/overview%}), which is required by all AJAX controls. That's why you can add the [Editor](https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx) to the page in a simple way as demonstrated in this step.
89128

@@ -113,7 +152,7 @@ Run your page by pressing `F5`.
113152
>caption Add the Editor to the page
114153
![Add RadEditor to a page](images/getting-started-editor.png)
115154

116-
## Step 5: Add the HtmlChart to Your Project
155+
### Step 6: Add the HtmlChart to Your Project
117156

118157
Let’s dive a little bit deeper in the configuration of the controls from the UI for ASP.NET AJAX suite. By following the steps below, you will create a data-bound [HtmlChart]({%slug htmlchart/overview%}). You will also add a handy tooltip that shows the values from a custom data field.
119158

@@ -256,7 +295,7 @@ Run the page by pressing `F5`. You are expected to see something similar to the
256295
>caption Bound HtmlChart with a custom Tooltip template
257296
![Bound HtmlChart with a custom Tooltip template](images/getting-started-htmlchart.png)
258297

259-
## Step 6: Style the Controls
298+
### Step 7: Style the Controls
260299

261300
Telerik UI for ASP.NET AJAX provides more than [20 predefined skins]({% slug introduction/radcontrols-for-asp.net-ajax-fundamentals/controlling-visual-appearance/how-to-load-skins-from-external-assemblies %}) that allow you to change the look and feel of each component. To use the desired skin, set the skin name as the `Skin` property value of the control:
262301

0 commit comments

Comments
 (0)