• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

MVC - User Control Question

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    MVC - User Control Question

    I have 2 pages which display similar data in MVC web application

    First page has user control with 7 columns.

    Second page needs to display same as first but with button column so there will be button at end of each row.

    Would be nice to reuse user control but I see no way how to do this.

    Any help please.

    #2
    What about using a partial view with a view model.

    Then in the view model you could have a bool property say ExpandedView, check if thats true in the partial view and display the extra buttons.

    Comment

    Working...
    X