hi every one!
i would like to do this in my MVC application:
- localhost/Enterprises
- localhost/Enterprises/Create
- localhost/Enterprises/Details/1
- localhost/Enterprises/1/Publications
- localhost/Enterprises/1/Publications/Create
- localhost/Enterprises/1/Publications/Details/1
With this, i can read that i would like to Create a Publication for an Enterprise of Id = 1. Im i correct by doing this that way?
if yes, i guest that i need to use Area from MVC with the help of the AreaViewEngine from S#arp Architecture. But i have a problem. If i register "Enterprises" to be an area, the controller for Enterprises will not answer properly. localhost/Enterprises/Create will not be seen because he think that its a call for the Area and not for the Controller.
any suggestion? or a better way for doing this?
thank you
alex