VB.Net ASP MVC中的fullcalendar

时间:2017-01-19 01:40:05

标签: asp.net-mvc vb.net fullcalendar

我尝试使用fullcalendar制作调度程序。我找不到使用vb.net的教程。所以我通过将c#代码转换为vb.net来遵循本教程A complete web diary system for jQuery and C# MVC。但我有问题显示日历。我已将fullcalendar.js添加到我的脚本文件夹,将fullcalendar.css添加到内容文件夹中。但结果没有显示。一个空白页面。这是我的HTML代码:

<div class="row">
<div id='calendar' style="width:65%"></div>
<script>
    $(document).ready(function () {
        $('#calendar').fullcalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            defaultView: 'agendaDay',
            editable: true,
            allDaySlot: false,
            selectable: true,
            slotMinutes: 15,
        });
    })
</script>

1 个答案:

答案 0 :(得分:1)

您需要在页面上包含CSS和JS。只是将它们添加到文件夹中可能还不够。

  • 将它们包含在_Layout.cshtml中(使其在所有页面上都可用)
  • 将它们包含在当前视图中(仅限此页面)

示例:

<link href="@Url.Content("~/Content/fullcalendar.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/fullcalendar.js")" type="text/javascript"></script>

此外,您还有一个未公开的<div class="row">