Passing User Input

  • Thread starter Thread starter Reid
  • Start date Start date
R

Reid

Hi,

I have a web form that has dynamic user input that needs to be passed to my
business layer. I am using a MVC design and I have an interface to my
controller class. I was thinking about using a hashtable to store the user
input and passing it. Any other ideas on how to pass data that can be
different each call?

Thanks
 
You may want to use the data that is already in the Request object and just
pass the context. I am using the Maverick.Net framework and it has all the
data from the web form.
 
Back
Top