diff --git a/docs-aspnet/getting-started-core/first-steps.md b/docs-aspnet/getting-started-core/first-steps.md
index 0a42d4c5cfd..1f5a44c4426 100644
--- a/docs-aspnet/getting-started-core/first-steps.md
+++ b/docs-aspnet/getting-started-core/first-steps.md
@@ -167,20 +167,20 @@ Before you can use a Telerik UI component, you must include the theme, the jQuer
Utilize the Telerik UI DatePicker component by adding the snippet from the following example to `~/Views/Home/Index.cshtml`.
- ```tab-HtmlHelper
-
-
Kendo UI DatePicker
- @(Html.Kendo().DatePicker()
- .Name("my-picker")
- )
-
- ```
- ```tab-TagHelper
-
-
Kendo UI DatePicker
-
-
- ```
+```cshtml
+
+
Kendo UI DatePicker
+ @(Html.Kendo().DatePicker()
+ .Name("my-picker")
+ )
+
+```
+```tagHelper
+
+
Kendo UI DatePicker
+
+
+```
Now you are ready to run the web app.
diff --git a/docs-aspnet/html-helpers/navigation/treeview/checkboxes.md b/docs-aspnet/html-helpers/navigation/treeview/checkboxes.md
index c8c2bc584c2..cd4da91997a 100644
--- a/docs-aspnet/html-helpers/navigation/treeview/checkboxes.md
+++ b/docs-aspnet/html-helpers/navigation/treeview/checkboxes.md
@@ -30,7 +30,7 @@ You can define the `Checkboxes` configuration option by:
* The `CheckChildren()` option indicates whether checkboxes of child items will be checked when the checkbox of a parent item is checked. This option also enables tri-state checkboxes with an indeterminate state.
* The `TemplateId()` option allows you to define a script template which will be used for the rendering of the checkboxes. Similarly, the `Template()` option allows the setting of an inline string template.
- @(Html.Kendo().TreeView()
+ @(Html.Kendo().TreeView()
.Name("treeview")
.DataTextField("Name")
.Checkboxes(checkboxes => checkboxes
@@ -43,11 +43,10 @@ You can define the `Checkboxes` configuration option by:
.Action("Read_TreeViewData", "TreeView")
)
)
- )
-
-
+
## See Also