up vote 1 down vote favorite
share [g+] share [fb]

We have Asp.net .aspx and MVC Co-existing project, Codebehind/Codefile are still existing inside .aspx files after project published, it needes a lot of effort to get rid of these after deployment: we have to manually change every .aspx file

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPages/xxx.master" 
AutoEventWireup="true" Inherits="xxx.Login" Codebehind="Default.aspx.cs" %>

To

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPages/xxx.master" 
AutoEventWireup="true" Inherits="xxx.Login"  %>

it is ton of work to do that anyone can help? Thanks

link|improve this question
1  
Not sure I fully understand... If you are using Visual Studio's Publish feature and have selected "only files needed to run this app", your code-behind files should not be deployed. – Kurt Schindler Aug 14 '09 at 20:18
the <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPages/xxx.master" AutoEventWireup="true" Inherits="xxx.Login" Codebehind="Default.aspx.cs" %> Codebehind attribute of Page was not taken off from .ASPX files after deployed – simon Aug 17 '09 at 15:13
I've seen the same thing - everything works if I remove the CodeFile attribute after deploying, otherwise the page request fails because the .CS file is missing. I don't have a solution yet, though :( – Steve Eisner Oct 5 '09 at 20:05
feedback

2 Answers

You don't need to remove the Codebehind attribute from your ASPX files. You just deploy them without .CS files. The classes specified in the Codebehind are compiled in to the assembly and are available after the assembly gets deployed (which you do always).

link|improve this answer
if the codebehind/codefile attribute not been removed, the web page generated an error when request to the page, after manually remove it, it works, so this attribute should be remvoed somehow. Thanks Simon – simon Aug 17 '09 at 13:56
feedback

Even i face this problem in my Dynamic Data website. It compiles the application and i got the dlls in bin but the Page directive in aspx stills holds codebehind attribute pointing to the original .aspx.cs file(even though the published files does not have .aspx.cs files).

I am rite now manually rmeoving this attribute in Page directive in all pages. I tried "Web deployment plugin too but still no luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown