Populating a form dynamically based on user input in ASP.Net MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T19:43:32Zhttp://stackoverflow.com/feeds/question/300957http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300957/populating-a-form-dynamically-based-on-user-input-in-asp-net-mvc0Populating a form dynamically based on user input in ASP.Net MVCMunkiPhD2008-11-19T04:01:48Z2008-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><form action="/CreateWorkout/Create" method="post">
Number of Exercises:
<%= Html.TextBox("tbxNumberOfExercises") %>
<br />
<br />
<input type="submit" value="Set Exercise Number" />
</form>
<% if (ViewData["number"] != null)%>
There are this many:<%=Html.Encode(ViewData["number"])%>
<br />
and this line should show up
<% if (ViewData["number"] != null)
{
int max = (int)ViewData["number"];
for (int i = 0; i < max; i++)
{%>
<br />
<br />
<%= Html.TextBox("tbox_exercise" + i) %>
<% }
} %>
<% if (ViewData["s"] != null) %>
<%=Html.Encode(ViewData["s"]) %>
</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#3010052Answer by Scott for Populating a form dynamically based on user input in ASP.Net MVCScott2008-11-19T04:38:11Z2008-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><form action="/Demo01/Create" method="post">
Number of Exercises:
<%= Html.TextBox("tbxNumberOfExercises") %>
<br />
<br />
<input type="submit" value="Set Exercise Number" />
</form>
<% if (ViewData["number"] != null) {%>
<form action="/Demo01/Save" method="post">
There are this many:<%=Html.Encode(ViewData["number"])%>
<br />
and this line should show up
<% if (ViewData["number"] != null) {
int max = (int)ViewData["number"];
for (int i = 0; i < max; i++) {%>
<br />
<br />
<%= Html.TextBox("tbox_exercise" + i) %>
<% }
} %>
<% if (ViewData["s"] != null) %>
<%=Html.Encode(ViewData["s"]) %>
<input type="submit" value="Save Exercises" />
<% } %>
</form>
</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#3010091Answer by spoon16 for Populating a form dynamically based on user input in ASP.Net MVCspoon162008-11-19T04:42:17Z2008-11-19T04:42:17Z<p>The problem is that your <code></form></code> ending tag needs to come at the end of your view.</p>
<p>Try this modified view:</p>
<pre><code><form action="/CreateWorkout/Create" method="post">
Number of Exercises:
<%= Html.TextBox("tbxNumberOfExercises") %>
<br />
<br />
<input type="submit" value="Set Exercise Number" />
<% if (ViewData["number"] != null)%>
There are this many:<%=Html.Encode(ViewData["number"])%>
<br />
and this line should show up
<% if (ViewData["number"] != null)
{
int max = (int)ViewData["number"];
for (int i = 0; i < max; i++)
{%>
<br />
<br />
<%= Html.TextBox("tbox_exercise" + i) %>
<% }
} %>
<% if (ViewData["s"] != null) %>
<%=Html.Encode(ViewData["s"]) %>
</form>
</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#3010622Answer by tvanfosson for Populating a form dynamically based on user input in ASP.Net MVCtvanfosson2008-11-19T05:20:22Z2008-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#3015700Answer by MunkiPhD for Populating a form dynamically based on user input in ASP.Net MVCMunkiPhD2008-11-19T11:03:33Z2008-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>