本文介绍了在asp.net mvc3中将值从httpget传递到httppost的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在asp.net mvc3中将参数从HttpGet传递给HttpPost。

当我尝试获取空值时,在HttpPost中它必须从查询字符串中读取值。 br />


如果可能,可以通过示例发布代码。







谢谢,

lokesh

I want to know how to pass parameters from HttpGet to HttpPost in asp.net mvc3.
when i am trying i am getting null values and in HttpPost it has to read values from querystring.

If possible plz post the code with example.



thanks,
lokesh

推荐答案

[HttpGet]
public ActionResult Index()
{

TempData["hi"]="hello";
return View();

}

[Httppost]
public ActionResult Index(Model model)
{
var s=TempData["hi"].ToString();
return View();
}







我希望这会有所帮助



干杯!!




I hope this will help

Cheers !!


这篇关于在asp.net mvc3中将值从httpget传递到httppost的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 17:33