Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascriptmvc folder structure with asp.net mvc

It seems to me the first biggest hurdle of fitting javascriptmvc into asp.net mvc, is the folder structure. Has anyone adapted the asp.net mvc folder structure to serve up content files from the folder structure javascriptmvc expects?

like image 625
Trent Avatar asked Mar 12 '26 02:03

Trent


1 Answers

using routes.IgnoreRoute("javascriptmvc-3.0.5/{*pathInfo}"); in your route definitions things should work as expected.

like image 124
hunter Avatar answered Mar 13 '26 16:03

hunter