|
|
|
ใครก็ได้ช่วยเขียน รับค่าจากdatabase ไปใส่ใน javascript (asp.net(c#)) |
|
|
|
|
|
|
|
Code (JavaScript)
<link href='fullcalendar/fullcalendar.css' rel='stylesheet' />
<link href='fullcalendar/fullcalendar.print.css' rel='stylesheet' media='print' />
<script src='jquery/jquery-1.9.1.min.js'></script>
<script src='jquery/jquery-ui-1.10.2.custom.min.js'></script>
<script src='fullcalendar/fullcalendar.min.js'></script>
<script>
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
events: [ //จะนำไปใส่ตรงนี้ครับ
{
id: 1,
title: 'All Day Event',
start: new Date(2013, m, 1)
},
{
id: 2,
title: 'Long Event',
start: new Date(y, m, d-5),
end: new Date(y, m, d-2)
},
{
id: 3,
title: 'Repeating Event',
start: new Date(y, m, d-3, 03, 0),
allDay: false
}
]
});
});
</script>
Code (C#)
<body>
<form id="form1" runat="server">
<div>
<div id='calendar'></div>
</div>
</form>
</body>
Tag : ASP.NET JavaScript, Web (ASP.NET)
|
ประวัติการแก้ไข 2013-07-11 11:00:50 2013-07-11 11:01:52
|
|
|
|
|
Date :
2013-07-11 11:00:15 |
By :
thewinner55 |
View :
872 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ stringbuilder กับ registerclientscriptblock
|
|
|
|
|
Date :
2013-07-11 12:02:41 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ๆ
แต่ดูจากโค้ดน่าจะใช้ registerstartupscript มากกว่า
|
|
|
|
|
Date :
2013-07-11 12:05:04 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วย เขียน นำให้สักนิด
|
|
|
|
|
Date :
2013-07-11 12:52:07 |
By :
thewinner55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แบบนี้ละ แต่ไม่รู้จะไปยังไงต่อ
DataClasses1DataContext db = new DataClasses1DataContext();
var conn1 = from p in db.cars select p;
foreach (car p in conn1)
{
}
|
ประวัติการแก้ไข 2013-07-11 15:48:06
|
|
|
|
Date :
2013-07-11 14:36:38 |
By :
thewinner55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|