show/hide this revision's text 2 edited body

With jQuery it is pretty easy to insert html elements into the DOM, on the fly, with no postback. It is using javascript, which you said in your header that you didn't want, but you did say it was OK in the question so tell me if you need something else.
So what you really need to figure out is a way to handle the data when sent to the server...

...and that doesn't have to be too hard either. If I'm not mistaken (but I might be) values from input elements with the same name will be handled as an array of values. Thus, if you insert new elements all with a generic name, you should be able to retrieve all the data by iterating over the array on the server.

This html

<input type="text" name="customData" />
<input type="text" name="customData" />

will post data that you can get with this C# code on the server:

public ActionMethod ActionResult DoCoolStuff(FormCollection postedValues) {
    foreach(string data in postedValues.customData) {
         // This is where the cool stuff goes
    }
    Return RedirectToAction("Index");
}
show/hide this revision's text 1

With jQuery it is pretty easy to insert html elements into the DOM, on the fly, with no postback. It is using javascript, which you said in your header that you didn't want, but you did say it was OK in the question so tell me if you need something else.
So what you really need to figure out is a way to handle the data when sent to the server...

...and that doesn't have to be too hard either. If I'm not mistaken (but I might be) values from input elements with the same name will be handled as an array of values. Thus, if you insert new elements all with a generic name, you should be able to retrieve all the data by iterating over the array on the server.

This html

<input type="text" name="customData" />
<input type="text" name="customData" />

will post data that you can get with this C# code on the server:

public ActionMethod DoCoolStuff(FormCollection postedValues) {
    foreach(string data in postedValues.customData) {
         // This is where the cool stuff goes
    }
    Return RedirectToAction("Index");
}