partialview 用法

摘要:
Layout=“~/Views/Shared/Admin.cs.html”;=空&i<//userDetail.Emalil=ds.Tables[0].Rows[i][“Emalil”].ToString();

using  MvcApplication1.Models;

@model MvcApplication1.Models.UserInfoModel

@{     ViewBag.Title = "Index";     Layout = "~/Views/Shared/Admin.cshtml"; }

<h2>Index</h2>

@*@Html.Partial("UserListPartial")

@Html.Partial("UserListPartial",1)*@

@Html.Partial("UserListPartial",@Model.UserList) @*

@Html.RenderPartial("UserListPartial")*@

@{         //用html.Partial调用的后台代码         

    //public ActionResult Index()     

    //{         //    TestMVC.Msg.UserDB userdb = new TestMVC.Msg.UserDB(ConfigurationManager.ConnectionStrings["TestMvcConnectionString"].ToString());      

   //    UserInfoModel userInfoModel = new UserInfoModel();

        //    userInfoModel.UserList = new List<Models.UserDetail>();   

      //    DataSet ds = userdb.GetAll();    

     //    if (ds != null && ds.Tables[0].Rows.Count > 0)       

  //    {         //        for (int i = 0; i < ds.Tables[0].Rows.Count; i++)        

//        {         //            Models.UserDetail userDetail = new Models.UserDetail();        

//            userDetail.UserID = ds.Tables[0].Rows[i]["UserID"].ToString();        

//            userDetail.UserName = ds.Tables[0].Rows[i]["UserName"].ToString();        

//            userDetail.Sex = ds.Tables[0].Rows[i]["Sex"].ToString();        

//            userDetail.BirthDay = ds.Tables[0].Rows[i]["BirthDay"].ToString();        

//            userDetail.Emalil = ds.Tables[0].Rows[i]["Emalil"].ToString();        

//            userDetail.Addr1 = ds.Tables[0].Rows[i]["Addr1"].ToString();       

  //            userDetail.Addr2 = ds.Tables[0].Rows[i]["Addr2"].ToString();        

//            userInfoModel.UserList.Add(userDetail);         //        }

    //    }

  //    return View(userInfoModel);         //}

        //public ActionResult UserListPartial()  

       //{         //    return PartialView();         //}

   }

@*    服务器端代码 ,用action的调用方法

@Html.Action("NonCameraImagePartialView")

@{Html.RenderAction("NonCameraImagePartialView", new { notIntNo =1 });}

   public ActionResult NonCameraImagePartialView(int notIntNo)  

       {             NonCameraImageModel model = new NonCameraImageModel();     

          model.NotIntNo = notIntNo;       

          model.ImageUrls = GetNonCameraImage(notIntNo);

          return PartialView("NonCameraImagePartialView",model);       

  }

*@

@*UserListPartial.cshtml 视图*@

@*@model int

@model MvcApplication1.Models.UserDetail*@

@model IEnumerable<MvcApplication1.Models.UserDetail>

<h2>partialveiw</h2>

@*<h2>@Model</h2>*@

<table>  

   @foreach(var item in Model)  

   {                 <tr>            

                 <td>@item.UserID</td>            

                <td>@item.UserName</td>       

                </tr>    

      } </table>

免责声明:文章转载自《partialview 用法》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇呼吁贴:呼唤WINDOWS下的lighttpd11g 重建EM 报ORA-20001: SYSMAN already exists下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

python中将xml格式转json格式

一、简介 在用python写脚本时,通常需要处理xml格式的文件或字符串。由于json格式处理的方便性, 我们可将其转为json格式进行处理。 二、步骤 1、安装工具包xmltodict 在命令行输入:pip install xmltodict 2、在代码使用xmltodict.parse(xml_str)进行处理 如 def load_json(xml_...

C#调用WebService实现天气预报

http://zhangkui.blog.51cto.com/1796259/497324/ 本文使用Winform (C#)调用互联网上公开的WebServices(http://www.webxml.com.cn/WebServices/WeatherWebService.asmx)来实现天气预报,该天气预报 Web 服务,数据来源于中国气象局 htt...

xml_python_查看xml中所有的标记数据

作用:传入存储xml文件的根路径,显示 xml 文件中所有的数据信息 1 import os 2 import xml.dom.minidom 3 4 def xml_label_names(xml_root_path): 5 xml_files = os.listdir(xml_root_path) 6 print(xml_...

Android开发 Html工具类详解

前言  在一些需求富文本显示或者编辑的开发情况下,数据都是用html的格式来保存文本信息的.而google是有提供解析html的工具类那就是Html.有了Html可以让TextView也支持富文本(其实原理还是解析Html然后在转成SpannableString再给TextView显示) 显示Html格式文本 String htmlConte...

Html辅助方法 之 Form表单标签

一、Html.BeginForm  <form>标签 //视图代码@using (Html.BeginForm("search", "home", FormMethod.Get),new { target="_black",@ }) { <input type="text" value="" /> }//生成的...

简便的将DataSet导入到数据库中

      有时候我们需要经常的将数据集(DataSet)导入到数据库中,可是怎么办呢? 有人就说了,利用Sql语句马上就可以搞定了,对,sql是可以搞定,但是sql的拼接不可以有差错啊,利用SqlParameter可以减少类型的烦恼,可是如果是很多列,那还不累死你。 1、将DataSet导入Access中(OleDbDataAdapter.Update方...