Daily Archives: August 7, 2009

asp.net mvc – The virtual path maps to another application, which is not allowed

what a waste of time… i was getting this error:

Error 1
The virtual path ‘/Views/Shared/Site.Master’ maps to another application, which is not allowed. C:\temp\Views\Cart\New.aspx

this didn’t really help me, some searching said stuff about IIS mappings etc… anyways it turns out to be very simple… one of my views had a missing tilde ~

“/Views/Shared/Site.Master” i changed it to   “~/Views/Shared/Site.Master” and the problem was gone…

as i said what a waste of time !!!!