Click here to Skip to main content
15,881,172 members
Articles / Web Development / HTML

DayPilot Gantt Chart for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.85/5 (21 votes)
21 Mar 2016Apache3 min read 99.2K   4.2K   62  
How to display AJAX Gantt Chart in ASP.NET application.
<%@ Master Language="vb" AutoEventWireup="true" CodeFile="Site.master.vb" Inherits="SiteMaster" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head id="Head1" runat="server">
	<title></title>
	<link href="~/Media/layout.css" rel="stylesheet" type="text/css" />
	<link href="~/Themes/scheduler_8.css" rel="stylesheet" type="text/css" />
	<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript" ></script>
	<asp:ContentPlaceHolder ID="HeadContent" runat="server"></asp:ContentPlaceHolder>
</head>
<body>
	<form id="Form1" runat="server">
		<div id="header">
			<div class="bg-help">
				<div class="inBox">
					<h1 id="logo"><a href='http://code.daypilot.org/35296/open-source-gantt-chart-for-asp-net'>Open-Source Gantt Chart for ASP.NET</a></h1>
					<p id="claim"><a href="http://www.daypilot.org/">DayPilot</a> - AJAX Calendar/Scheduling Controls for ASP.NET</p>
					<hr class="hidden" />
				</div>
			</div>
		</div>
		<div class="shadow"></div>
		<div class="hideSkipLink">
			<asp:Menu ID="NavigationMenu" runat="server" CssClass="toolbar" EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal" >
				<Items>
					<asp:MenuItem NavigateUrl="~/" Text="Home" Selected="true" />
				</Items>
			</asp:Menu>
		</div>
		<div class="main">
			<asp:ContentPlaceHolder ID="MainContent" runat="server"/>
		</div>
		<div class="clear">
		</div>
	</form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Czech Republic Czech Republic
My open-source event calendar/scheduling web UI components:

DayPilot for JavaScript, Angular, React and Vue

Comments and Discussions