MediaPlayer in Razor Pages
This article describes how to seamlessly integrate and configure the Telerik UI MediaPlayer for ASP.NET Core in Razor Pages applications.
Referencing Handler Methods in Razor Pages
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a cshtml file and a cshtml.cs file (by convention, the two files have the same name).
The cshtml.cs file, known as the PageModel, contains handler methods that respond to HTTP requests. These methods are prefixed with On followed by the HTTP verb (for example, OnGet, OnPost, OnPostRead, OnPostCreate).
Handler methods declared in a PageModel can be referenced from any Razor Page using one of the following URL patterns:
-
Using
Url.Page()C#Url.Page("PageName", "HandlerName") // OR Url.Page("/FolderName/PageName", "HandlerName")For example,
Url.Page("Index", "Read")references theOnPostReadorOnGetReadhandler method in theIndex.cshtml.csfile. -
Using a query string
C#Url("/PathToPage?handler=HandlerName")For example,
Url("/Index?handler=Read")references theOnPostReadorOnGetReadhandler method in theIndexpage.
For more information on Razor Pages architecture and concepts, refer to the official Microsoft documentation.
Creating a Playlist with ListView
The following example demonstrates how to use the MediaPlayer and a ListView components in a Razor Pages application to create a playlist.
-
Bind the ListView to a remote DataSource to load the
title,posterandsourcefor each video. -
Within the
Changeevent of the ListView, assign the values of thetitle,posterandsourceproperties to the MediaPlayer.
@page
@model MediaPlayerPlaylistModel
@using Telerik.Examples.RazorPages.Models
@inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
@Html.AntiForgeryToken()
// Create a temmplate for the ListView (Playlist).
<script type="text/x-kendo-template" id="template">
<li class="k-item k-state-default" onmouseover="$(this).addClass('k-hover')"
onmouseout="$(this).removeClass('k-hover')">
<span>
<img src="#:Poster#" />
<h5>#:Title#</h5>
</span>
</li>
</script>
@(Html.Kendo().MediaPlayer()
.Name("mediaPlayer")
.AutoPlay(false)
.HtmlAttributes(new { style = "height:720px" })
)
<div class="k-list-container playlist">
@(Html.Kendo().ListView<Video>()
.Name("listView")
.TagName("ul")
.ClientTemplateId("template") // Set the template from above.
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Url(@Url.Page("MediaPlayerPlaylist", "Read")).Data("forgeryToken"))
)
.Selectable(true)
.Events(e => e.Change("onChange").DataBound("onDataBound"))
)
</div>For the complete project, refer to the MediaPlayer in Razor Pages example.