博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习笔记24_MVC前后台数据交互
阅读量:5129 次
发布时间:2019-06-13

本文共 875 字,大约阅读时间需要 2 分钟。

*最普通的交互方式,在Contoller中的Action方法内

public ActionResult Index()

{

  ViewData["Key"] =Value;

  Return View();

}

*对应Action的前台页面,在前台的Index.aspx中,即可使用<%=ViewData["Key"]%>

*每当请求一个Action时,最先会去执行此Action的方法。

*在Action中,可以将使用与Action不同的页面返回给用户,如:

public ActionResult Index(0

{

  ViewData["Key"] = value;

  return View("Index2");//如果参数为空,那么就默认找Index

}

*在Action中,除了return View()外,还能return Content("OK"); , 那么就相当于 Response.Write("Ok"); Respone.End();

当使用return Content(json)时,相当于一般处理程序,反正Action中,不一定就要输出视图。

*在Action中,除了使用无参的Action方法外,还能public ActionResult MyAction(string ID,String Pwd);

此处的形参名一定要和表单提交的参数名一致,这是在IIS运行页面生命周期时,通过反射Controller的Action方法,从而匹配出来的。

*在Action中,除了上述的形参外,还能将ID,Pwd封装在一个自定义的User类内,属性名也一定要和表单参数名一致,如  public ActionResult MyAction(User user) ;

 public class User

{

   public string ID{get;set;}

  pulic string pwd{get;set;}

}

 

转载于:https://www.cnblogs.com/pylblog/p/6971637.html

你可能感兴趣的文章
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>