Populating a form dynamically based on user input in ASP.Net MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:43:32Z http://stackoverflow.com/feeds/question/300957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc 0 Populating a form dynamically based on user input in ASP.Net MVC MunkiPhD 2008-11-19T04:01:48Z 2008-11-19T11:03:33Z <p>My question is similar to Engram's <a href="http://stackoverflow.com/questions/223149/how-do-you-handle-the-output-of-a-dynamically-generated-form-in-aspnet-mvc">here</a>, but my question goes a bit further. The way i intend it to work is I have a textbox asking how many entries a user is going to make. After they input the number, I need to create that many more textboxes to allow for entries (and then repeat the same process with those textboxes, but baby steps first...) I tried collecting the keys on the post, but it only returns the initial textbox asking for the number of entries. I'm still trying to get a grasp on MVC and the tutorials/videos so far don't delve this deep into it yet. Then again, I know this is probably something I could handle using JQuery, but I'd still be stuck in the same situation.</p> <p>This is the controller I'm using:</p> <pre><code>[AcceptVerbsAttribute("POST")] public ActionResult Create(int tbxNumberOfExercises) { ViewData["number"] = tbxNumberOfExercises; foreach (var key in Request.Form.Keys) { string keyString = key.ToString(); if (keyString.StartsWith("tbox_exercise", StringComparison.OrdinalIgnoreCase)) { string recNum = keyString.Substring(13, keyString.Length - 13); string approvedKey = Request.Form["tbox_exercise" + recNum]; int number; int.TryParse(approvedKey, out number); } } return View("Create"); } </code></pre> <p>And this is my aspx:</p> <pre><code>&lt;form action="/CreateWorkout/Create" method="post"&gt; Number of Exercises: &lt;%= Html.TextBox("tbxNumberOfExercises") %&gt; &lt;br /&gt; &lt;br /&gt; &lt;input type="submit" value="Set Exercise Number" /&gt; &lt;/form&gt; &lt;% if (ViewData["number"] != null)%&gt; There are this many:&lt;%=Html.Encode(ViewData["number"])%&gt; &lt;br /&gt; and this line should show up &lt;% if (ViewData["number"] != null) { int max = (int)ViewData["number"]; for (int i = 0; i &lt; max; i++) {%&gt; &lt;br /&gt; &lt;br /&gt; &lt;%= Html.TextBox("tbox_exercise" + i) %&gt; &lt;% } } %&gt; &lt;% if (ViewData["s"] != null) %&gt; &lt;%=Html.Encode(ViewData["s"]) %&gt; </code></pre> <p>Is there something I'm overlooking, not comprehending, or should I quit while I'm at it because it seems like I'll never get it? </p> <p>Thanks in advance for any help -- I'm just trying to learn as most I can.</p> http://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc/301005#301005 2 Answer by Scott for Populating a form dynamically based on user input in ASP.Net MVC Scott 2008-11-19T04:38:11Z 2008-11-19T04:38:11Z <p>I'd break this up in stages, you'll need to add a "Save" view someplace depending on what you want.</p> <p>Scott</p> <pre><code>&lt;form action="/Demo01/Create" method="post"&gt; Number of Exercises: &lt;%= Html.TextBox("tbxNumberOfExercises") %&gt; &lt;br /&gt; &lt;br /&gt; &lt;input type="submit" value="Set Exercise Number" /&gt; &lt;/form&gt; &lt;% if (ViewData["number"] != null) {%&gt; &lt;form action="/Demo01/Save" method="post"&gt; There are this many:&lt;%=Html.Encode(ViewData["number"])%&gt; &lt;br /&gt; and this line should show up &lt;% if (ViewData["number"] != null) { int max = (int)ViewData["number"]; for (int i = 0; i &lt; max; i++) {%&gt; &lt;br /&gt; &lt;br /&gt; &lt;%= Html.TextBox("tbox_exercise" + i) %&gt; &lt;% } } %&gt; &lt;% if (ViewData["s"] != null) %&gt; &lt;%=Html.Encode(ViewData["s"]) %&gt; &lt;input type="submit" value="Save Exercises" /&gt; &lt;% } %&gt; &lt;/form&gt; </code></pre> <p>And then in your controller something like this:</p> <pre><code>public class Demo01Controller : Controller { public ActionResult Create() { return View(); } [AcceptVerbsAttribute("POST")] public ActionResult Create(int tbxNumberOfExercises) { ViewData["number"] = tbxNumberOfExercises; return View("Create"); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult Save() { foreach (var key in Request.Form.Keys) { string keyString = key.ToString(); if (keyString.StartsWith("tbox_exercise", StringComparison.OrdinalIgnoreCase)) { string recNum = keyString.Substring(13, keyString.Length - 13); string approvedKey = Request.Form["tbox_exercise" + recNum]; int number; int.TryParse(approvedKey, out number); } } return View(); // return/redirect to wherever you want } } </code></pre> http://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc/301009#301009 1 Answer by spoon16 for Populating a form dynamically based on user input in ASP.Net MVC spoon16 2008-11-19T04:42:17Z 2008-11-19T04:42:17Z <p>The problem is that your <code>&lt;/form&gt;</code> ending tag needs to come at the end of your view.</p> <p>Try this modified view:</p> <pre><code>&lt;form action="/CreateWorkout/Create" method="post"&gt; Number of Exercises: &lt;%= Html.TextBox("tbxNumberOfExercises") %&gt; &lt;br /&gt; &lt;br /&gt; &lt;input type="submit" value="Set Exercise Number" /&gt; &lt;% if (ViewData["number"] != null)%&gt; There are this many:&lt;%=Html.Encode(ViewData["number"])%&gt; &lt;br /&gt; and this line should show up &lt;% if (ViewData["number"] != null) { int max = (int)ViewData["number"]; for (int i = 0; i &lt; max; i++) {%&gt; &lt;br /&gt; &lt;br /&gt; &lt;%= Html.TextBox("tbox_exercise" + i) %&gt; &lt;% } } %&gt; &lt;% if (ViewData["s"] != null) %&gt; &lt;%=Html.Encode(ViewData["s"]) %&gt; &lt;/form&gt; </code></pre> <p>I would recommend Scott's approach as far as best practice. This answer is about getting your exact scenario working.</p> http://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc/301062#301062 2 Answer by tvanfosson for Populating a form dynamically based on user input in ASP.Net MVC tvanfosson 2008-11-19T05:20:22Z 2008-11-19T05:20:22Z <p>I would consider adding the textboxes client-side via javascript rather than posting back to the server to have the form redrawn, assuming that you can live with javascript as a requirement for using the application. If not, then @Scott's approach should work. As a matter of preference I would probably have the Save method take a FormCollection parameter rather than deal with the Request object directly.</p> <p>The javascript solution would be to have a single textbox and a button to add another. The user could continue to add textboxes until they have enough.</p> http://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc/301570#301570 0 Answer by MunkiPhD for Populating a form dynamically based on user input in ASP.Net MVC MunkiPhD 2008-11-19T11:03:33Z 2008-11-19T11:03:33Z <p>Thanks for the help guys. I realized at 5 this morning that my issue is that the form didn't include the new textboxes / I needed another form. I'll have to seriously look into Javascript and actually modifying the DOM as it would be better to keep it client side.</p> <p>Thanks so much.</p>