本文介绍了如何在MVC3中的TextBoxFor中设置值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好...
我想在textbox/textboxfor中显示用户名,但是在传递到HTTP帖子上的控制器时,我希望传递用户ID.

Hi all...
I want to show username in textbox/textboxfor but while passing to controller on http post i want user id to be passed. How can achieve this functioanlity in mvc by any means?

推荐答案

[HttpPost]
public ActionResult Index(FormCollection formValues)
{
  string value = formValues["userName"];
  return View();
}




希望这会有所帮助

问候,
萨加尔(Sagar)




Hope this helps

Regards,
Sagar


这篇关于如何在MVC3中的TextBoxFor中设置值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 20:35