views:

24

answers:

1

I am not sure what this is called. If know know what it's called you can edit this post.

asp.net mvc allows you to do this:

public ActionResult Index(FormCollection fc)
{
     Item.Add(fc);
     return View();
}

It is nice that in MVC the FormCollection object is automatically populated with the relevant data. Is there anything like this in asp.net webforms?

+1  A: 

Use the Request.Form property.

SLaks
Is it possible to have an array in the request form property?
Luke101