dll - ASP.NET MVC 3 File Structure -
i apologize vague title - new asp.net mvc coming php, , have teamed .net developer has webforms background.
when working mvc in php, of files visible on server - say, can go of model, view , controller files , edit of code remotely without problem.
in .net mvc, couldn't find controller or model files, asked developer how webpage being put together, , told me how .net compiles code .dll files , unable access this. wanted view controller see how pulling views, didn't see controller folder on server.
to me, doesn't sound right, not sure because of lack of experience in .net. can provide input if typical .net scenario, , if not, doing wrong? should take red flag? keep in mind .net mvc new both of us.
thanks!
there no code files because these code files compiled dll files during publish process. it's not strange - it's better because of performance reasons. it's common scenario asp.net , asp.net mvc applications.
you can deploy yor application via xcopy deployment (to have .cs files etc.): copy files destination folder. site compiled (into app_temp destination) runtime on first run. .cs files still in place.
you can read more publishing procees here:
Comments
Post a Comment