私はfullcalendarを使用してスケジューラを作ろうとしています。私はvb.netを使用するチュートリアルを見つけることができません。だから、私はこのチュートリアルA complete web diary system for jQuery and C# MVCに従って、C#コードをvb.netに変換します。しかし、カレンダーを表示するには問題があります。スクリプトフォルダにfullcalendar.jsを追加し、コンテンツフォルダにfullcalendar.cssを追加しました。しかし結果は何も示さない。空白のページ。これは私のhtmlコードです:VBでのfullcalendar ASP MVC
<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>
これは役に立ちましたか? –
@AllyMurray nope – rodgersmith
まだ空白のページが表示されていますか?コンソールにエラーがありますか? –