forked from SharpMap/SharpMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathD3.aspx
More file actions
12 lines (11 loc) · 744 Bytes
/
D3.aspx
File metadata and controls
12 lines (11 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="cssContent" ContentPlaceHolderID="CustomCssContent" runat="server">
<link rel="stylesheet" href="<%=this.Url.Content("~/Content/d3.style.css?v=1")%>" />
</asp:Content>
<asp:Content ID="jsContent" ContentPlaceHolderID="CustomJsContent" runat="server">
<script type="text/javascript" src="<%=this.Url.Content("~/Scripts/d3.v2.js?v=1")%>"> </script>
<script type="text/javascript" src="<%=this.Url.Content("~/Scripts/script_d3.js?v=1")%>"> </script>
</asp:Content>
<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server">
<div id="map"></div>
</asp:Content>