Asp. NET MVC how to pass data from the background controller to the foreground view-practical tips

Source: Internet
Author: User
Tags datetime

This example describes how MVC in asp.net passes data from the background controller to the foreground view. Share to everyone for your reference. The specific analysis is as follows:

Data storage Model:

Copy Code code as follows:
public class Calendarevent
{
public string ID {get; set;}
Public DateTime start {get; set;}
Public DateTime end {get; set;}
public string BackgroundColor {get; set;}
public string Title {get; set;}
public string AllDay {get; set;}
}

foreground receives display Data views View:

Copy Code code as follows:
<script type= "Text/javascript" >
$ (function () {
Calendar handle data as follows:

var events = [];
$.ajax ({
URL: "/deploymenttask/calendardata",
Success:function (data) {
events = data;
},
Async:false
});

$ ("#calendar"). Fullcalendar ({

Header: {
Left: ' Prev,next today ',
Center: ' title ',
Right: ' Month,agendaweek,agendaday '
Right: ' Month '
},
Selectable:true,
Weekmode: ' Variable ',//fixed,variable,liquid
Events:events,
defaulteventminutes:1440//default event length is one day
});
});
</script>

Background processing Data Controller controller:

Copy Code code as follows:
Public Jsonresult CalendarData ()
{
Operation op = new Operation ();
List<calendarevent> calendardata = Op. GetData ();
Return Json (CalendarData, jsonrequestbehavior.allowget);
}

I hope this article will help you with the ASP.net program design.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.