Mvc3.0 razor returns multiple model object datasets on a single view page

Source: Internet
Author: User
Note: a single view page returns multiple model datasets to take notes. Namespace models {public class Articel {public int ID {Get; set;} [required] [displayname ("title")] [maxlength (100)] Public String title {Get; set ;}} public class Cate {public int cateid {Get; Set ;}[ displayname (" Article Category ")] [required] Public String catename {Get; set;} public list <Article> Article {Get; Set ;}} public class listmodel {// <summary> /// Article // </Summary> Public ilist <Article> artclemodel {Get; set ;} /// <summary >/// document category /// </Summary> Public ilist <Cate> catemodel {Get; Set ;}} the action method is written as follows: public actionresult index () {VAR model = new listmodel (); Model. artclemodel = Articel. tolist (); Model. catemodel = Cate. tolist (); Return view (model);} view layer reference: @ model models. listmodel @ foreach (var tt in models. artclemodel) {@ TT. title} @ foreach (var tt in models. catemodel) {@ TT. catename}

 

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.