我在一个视图中有 3 个单选按钮和 2 个文本框。最初我需要通过视图将值保存在数据库中,一旦保存,我需要根据我单击的单选按钮在特定视图中显示保存的值。
问问题
597 次
2 回答
0
一种方法是将值发布到控制器方法,保存它,然后用这些值渲染回一个新视图。
于 2013-07-01T04:25:44.090 回答
0
This got solved. We can use JQuery to achive tgis
View
--------
var url = '@Url.Action("YourActionName", "YourControllerName")';
$.post(url, 'ID=' + radio button Id , function (data) {
$('#txtBox1').val(data.Key1);
$('#txtBox2').val(data.Key2);
$('#txtBox3').val(data.Key3);
}
Controller
----------
Inside your action method , construct a JSON string as showed below and send back to JQuery Function.
var dataTest = new { "Key1"= "value1","Key2"= "value2", "Key3"= "value3" };
return Json(dataTest, JsonRequestBehavior.AllowGet);
于 2013-07-11T09:16:06.400 回答