本文介绍了如何从MVC中的动态文本框列表中提取值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在数据库中有多个日期。现在我必须编辑任何日期。现在我从数据库中获取这些日期。因为我不知道我在数据库中有多少日期所以我动态地得到它们并在循环中添加。我生成了日期选择器循环。现在我想改变其中只有一两个日期相同。问题是我必须从我更改的特定ID中提取值。



我尝试过的事情:



i从谷歌尝试了很多但没有得到任何东西..

I have number of dates in database. Now i have to edit any date. now i m getting these dates from database. As i don't know how many dates i have in database so i get them dynamically and add here in a loop. i generate the loop of date-pickers. now i want to change only one or two dates rest r same. the problem is i have to extract the value from that particular id which i changed.

What I have tried:

i tried lot from google but getting nothing..

推荐答案

@using (Html.BeginForm())
{
    for (int i=0; i<5; i++)
    {
        @Html.TextBox(string.Format("txtDate[{0}]", i.ToString()), string.Empty, new { id= string.Format("txtDate{0}", i.ToString()) })
    }
    <p><input type="submit" value="Submit"/></p>
}





控制器





controller

[HttpPost]
public ActionResult Index(string[] txtDate)
{
            
    return View();
}


这篇关于如何从MVC中的动态文本框列表中提取值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 10:11