I have a solution that is using WebForms .Net 4.0. I am planing to utilize MVC3 in the same solution. I followed Scott Hanselman blog and things were roling.
I have to admit that I am quite new to this. However, It seems that I am missing a big part in how routes really work in respect to namespaces.
Currently, our solution have the following:
WebApplicatin:
Accounting
Receivables
ReceivablesGrid.aspx
ReceivableForm.aspx
Payables
PayablesGrid.aspx
PayablesForm
..etc.
So, you can request a Page using
Domain/Accounting/Receivables/ReceivablesGrid.aspx
Domain/Accounting/Receivables/ReceivableForm.aspx?Key=1
Domain/Accounting/Payables/PayablesGrid.aspx
Domain/Accounting/Payables/PayablesForm.aspx?Key=1
....
I am planing to add another layer to resemble MVC.
WebApplicatin:
Accounting
Receivables
ReceivablesGrid.aspx
ReceivableForm.aspx
Mobile
Controllers
ReceivableConroller.cs
Models
Views
Receivables
Index
Update
Edit
Create
Payables
PayablesGrid.aspx
PayablesForm
Mobile
Controllers
PayablesConroller.cs
Models
Views
Payables
Index
Update
Edit
Create
..etc.
Of course, this is not the real names. However, I tried to make it as close as possible to my situation. Unfortunately, it would be best if I follow this because I could use some of the logic that might be added at the same namespace. Moreover,creating folders at the root to resemble the Controllers, Views, Models wouldn't work with my solution.
In Global.asax, I added a route as such:
routes.MapRoute(
"AccountingReceivablesMobile", // Route name
"Accounting/Receivables/Mobile/{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional });
routes.MapRoute(
"AccountingPayablesMobile", // Route name
"Accounting/Payables/Mobile/{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional });
Another solution that I ended up trying is by extending the RazorViewEngine. In the constructor of the new engine, I set two properties as follows:
base.ViewLocationFormats = new string[] { "~/Accounting/Receivables/Mobile/Views/{1}/{0}.cshtml",
"~/Accounting/Payables/Mobile/Views/{1}/{0}.cshtml"
};
base.MasterLocationFormats = new[] { "~/Views/Shared/{0}.cshtml"}.
this worked quite well. However, I am just feeling that adding those routes is not very scalable as adding a webForm. My problem is I really don't want to add a route for every possible route. This means, I would have another route or entry to the array when I add a new view. So, How can i make this simpler? What am i doing wrong? I looked at Areas however it seems to force to create an Areas folder and put inside it.
Thanks,