vote up 0 vote down star

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

flag
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 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 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 at 20:05

2 Answers

vote up 0 vote down

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|flag
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 at 13:56
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.