-
Notifications
You must be signed in to change notification settings - Fork 21
/
Default_VB.aspx
63 lines (50 loc) · 2.8 KB
/
Default_VB.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default_VB.aspx.vb" Inherits="Default_VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
</Scripts>
</telerik:RadScriptManager>
<h1>Add RadEditor to the Application</h1>
<p>See the steps <a href="https://docs.telerik.com/devtools/aspnet-ajax/getting-started/first-steps#Add-RadEditor-to-the-Application">here</a></p>
<telerik:RadEditor runat="server" ID="RadEditor1" RenderMode="Lightweight">
<Content>
Congratulations! You have the Telerik UI for ASP.NET controls running in your project!
</Content>
</telerik:RadEditor>
<h1>Add RadHtmlChart to the Project</h1>
<p>See the steps <a href="https://docs.telerik.com/devtools/aspnet-ajax/getting-started/first-steps#Add-RadHtmlChart-to-the-Project">here</a></p>
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server">
<ChartTitle Text="Sales Log"></ChartTitle>
<PlotArea>
<Series>
<telerik:ColumnSeries Name="Clothеs" DataFieldY="values" ColorField="colors">
<TooltipsAppearance>
<ClientTemplate>
There are #=dataItem.description# sold in #=category#
</ClientTemplate>
</TooltipsAppearance>
</telerik:ColumnSeries>
</Series>
<XAxis DataLabelsField="labels"></XAxis>
</PlotArea>
</telerik:RadHtmlChart>
<h1>Apply New Skin to the Controls</h1>
<p>See the steps <a href="https://docs.telerik.com/devtools/aspnet-ajax/getting-started/first-steps#Apply-New-Skin-to-the-Controls">here</a></p>
<telerik:RadEditor runat="server" ID="RadEditor2" RenderMode="Lightweight" Skin="Glow">
<Content>
Congratulations! You have the Telerik UI for ASP.NET controls running in your project!
</Content>
</telerik:RadEditor>
</form>
</body>
</html>