Skip to content

Commit b95c4b0

Browse files
dmihaylovveesseelliinnaa
dmihaylo
authored andcommitted
docs: add minor change in metadata
1 parent 5b77af4 commit b95c4b0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

getting-started/first-steps.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: First Steps
3-
page_title: First Steps
3+
page_title: First Steps
44
description: "A step-by-step tutorial teaching how to use the Telerik UI controls for ASP.NET AJAX in Web Forms applications."
55
slug: getting-started/first-steps
66
tags: get,started,first,steps
@@ -10,7 +10,7 @@ position: 1
1010

1111
# First Steps with UI for ASP.NET AJAX
1212

13-
This article demonstrates the steps to create a <a href="https://docs.microsoft.com/en-us/aspnet/web-forms/what-is-web-forms" target="_blank">Web Forms application</a> components. You will download the Telerik components, create a project, and add the [RadEditor](https://docs.telerik.com/devtools/aspnet-ajax/controls/editor/overview) and [RadHtmlChart](https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/overview) controls. As RadHtmlChart requires data binding to show its full potential, you will learn how to bind the Telerik controls to sample data.
13+
This article demonstrates the steps to create a <a href="https://docs.microsoft.com/en-us/aspnet/web-forms/what-is-web-forms" target="_blank">Web Forms application</a> components. You will download the Telerik components, create a project, and add the [Editor](https://docs.telerik.com/devtools/aspnet-ajax/controls/editor/overview) and [HtmlChart](https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/overview) controls. As HtmlChart requires data binding to show its full potential, you will learn how to bind the Telerik controls to sample data.
1414

1515
Throughout this tutorial, you'll find links to relevant articles that you don't need to read immediately, but will help you deepen your knowledge about the Telerik UI controls. If you want to experiment with the sample application created here, you can fork or download the source code from the [GitHub repository](https://github.com/telerik/aspnet-sdk/tree/master/Common/MyFirstTelerikSite).
1616

@@ -92,11 +92,11 @@ The Telerik templates for Visual Studio allow you to kick-start your application
9292

9393
To learn more about the functionalities of the Telerik ASP.NET AJAX Visual Studio Extensions, see the documents in section [**GENERAL INFORMATION** > **Integration with Visual Studio** > **Visual Studio Extensions document section**]({%slug introduction/radcontrols-for-asp.net-ajax-fundamentals/integration-with-visual-studio/visual-studio-extensions/overview%}).
9494

95-
## Add RadEditor to the Application
95+
## Add Editor to the Application
9696

97-
The Web Forms Site created through the Telerik project template includes all basic references and registrations required by the Telerik UI for ASP.NET AJAX controls. The site has even a [ScriptManager control]({%slug scriptmanager/overview%}) that is required by all AJAX controls. That's why you can add the [RadEditor](https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx) control to the page in two simple steps:
97+
The Web Forms Site created through the Telerik project template includes all basic references and registrations required by the Telerik UI for ASP.NET AJAX controls. The site has even a [ScriptManager control]({%slug scriptmanager/overview%}) that 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) control to the page in two simple steps:
9898

99-
1. Open `Default.aspx`, and then declare RadEditor right after RadScriptManager:
99+
1. Open `Default.aspx`, and then declare Editor right after RadScriptManager:
100100

101101
```ASPX
102102
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
@@ -117,16 +117,16 @@ The Web Forms Site created through the Telerik project template includes all bas
117117

118118
To run your first page with a Telerik control, press **F5**.
119119

120-
>caption Add RadEditor to a page
121-
![Add RadEditor to a page](images/getting-started-editor.png)
120+
>caption Add Editor to a page
121+
![Add Editor to a page](images/getting-started-editor.png)
122122

123123
Another way to add a Telerik control to your project is to drag the control directly from the VS Toolbox. For more information, see [Adding the Telerik Controls to the Visual Studio Toolbox](https://docs.telerik.com/devtools/aspnet-ajax/general-information/integration-with-visual-studio/adding-the-telerik-controls-to-the-visual-studio-toolbox).
124124

125125
## Add RadHtmlChart to the Project
126126

127127
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 [RadHtmlChart]({%slug htmlchart/overview%}). You will also add a handy tooltip that shows the values from a custom data field. We will use a simple `DataTable` for this sample, but you can bind RadHtmlChart to a [preferred data source type](https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/data-binding/overview).
128128

129-
You already have a [RadScriptManager control](#add-radeditor-to-the-application) on the page so you are ready to declare RadHtmlChart. Place the RadHtmlChart declaration right after the RadEditor control that you added in the previous step:
129+
You already have a [RadScriptManager control](#add-radeditor-to-the-application) on the page so you are ready to declare RadHtmlChart. Place the RadHtmlChart declaration right after the Editor control that you added in the previous step:
130130

131131
1. In Default.aspx, define a **RadHtmlChart** with `ID="RadHtmlChart1"`:
132132

@@ -277,8 +277,8 @@ Each control in UI for ASP.NET AJAX has more than [20 predefined skins](https://
277277
</telerik:RadEditor>
278278
```
279279

280-
>caption Apply Glow Skin to RadEditor
281-
![Apply Glow Skin to RadEditor](images/getting-started-editor-skin.png)
280+
>caption Apply Glow Skin to Editor
281+
![Apply Glow Skin to Editor](images/getting-started-editor-skin.png)
282282

283283
## Next Steps
284284
Now that you have the Telerik UI for ASP.NET AJAX controls running in your project, you may want to explore their features, customize their behavior or change their appearance. Below you can find guidance on getting started with such tasks:

0 commit comments

Comments
 (0)