MVP - asp.net - passing information via views - confused

Posted by ekynox on Stack Overflow See other posts from Stack Overflow or by ekynox
Published on 2010-04-15T08:04:30Z Indexed on 2010/04/15 8:23 UTC
Read the original article Hit count: 263

Filed under:
|
|

Hi, I've just started to play around with MVP in asp.net. One thing I quite cant figure out is how do I pass information, i.e. an integer variable from one view(webform) to another.

Let's I have a customerlistView which is mapped to a customerlist.aspx page. From it I select a customer and it's record id. Say I want to display the customer's details in another view (i.e customerDetailView, customerdetail.aspx). How do I achieve that ?

Does that mean customerlistView would call the presenter of the customerdetail and cause a page redirect ?

Any ideas ?

thanks

© Stack Overflow or respective owner

Related posts about mvp

Related posts about ASP.NET