vote up 3 vote down star
3

I notice with the latest version of ASP.net MVC that view's no longer default to having code-behind classes. Which of course was a much request (read demanded) feature.

Only I currently need one behind a partial view i'm creating...

How do I go about adding a page behind now?

flag

50% accept rate
How about changing the title to read How to add a code-behind page to any view – John Oxley Aug 9 at 11:27

3 Answers

vote up 1 vote down

Ok, I have verified the solution, here is something that you need to note:

CodeBehind="View.ascx.cs" Inherits="Project.Views.Shared.View"

In your case, you need to change "Project.Views.Shared.View" based on your namespace and classname, and in order to access the control in the code-behind, you have to manually add declaration in code-behind. In my case, I need to initialize the gigaSoft proEssential control:

public class gigaTest2 : ViewUserControl
{
    protected global::Gigasoft.ProEssentials.PegoWeb PegoWeb1;
    protected void Page_Load(object sender, EventArgs e)
    {
        // Set Titles 
        PegoWeb1.PeString.MainTitle = "Hello ASP.NET";
        PegoWeb1.PeString.SubTitle = "";

        // One simple way of passing data, data binding also possible. //' 
        PegoWeb1.PeData.Subsets = 1;
        PegoWeb1.PeData.Points = 6;
        PegoWeb1.PeData.Y[0, 0] = 10;
        PegoWeb1.PeData.Y[0, 1] = 30;
        PegoWeb1.PeData.Y[0, 2] = 20;
        PegoWeb1.PeData.Y[0, 3] = 40;
        PegoWeb1.PeData.Y[0, 4] = 30;
        PegoWeb1.PeData.Y[0, 5] = 50;

        // Set style of chart and a few other properties //' 
        PegoWeb1.PePlot.Method = Gigasoft.ProEssentials.Enums.GraphPlottingMethod.Bar;
        PegoWeb1.PePlot.Option.GradientBars = 8;
        PegoWeb1.PeFont.FontSize = Gigasoft.ProEssentials.Enums.FontSize.Large;
    }
link|flag
vote up -1 vote down

I'm not sure why you are creating a code behind file, but if you really really do, then I would consider using the standard webforms approach instead.

I would also look into the basics of MVC to understand why page behinds are not needed.

Another explanation

How to use ASP:Chart without a code-behind (Option B)

link|flag
It's quite simple really. I need to use code behind to populate the Chart series i'm using. It wouldn't let me use a normal MVC approach. This is a REAL world compromise, and it works. – Harry Mar 25 at 23:28
In that case, here is how you can use Chart without a code-behind: code-inside.de/blog-in/2008/… – Dan Atkinson Mar 25 at 23:48
So are you telling me you would prefer to have very messy hard to manage spaghetti code in your html? I think this is very valid use of code behind. It is not controller logic, it isn't presentation code. it is presentation preparation. – Harry Mar 26 at 9:53
You don't have to put all of that code in the view. It's merely put there to show the user that they don't need to use code-behinds to achieve the same thing. – Dan Atkinson Mar 26 at 17:47
vote up 5 vote down check

How to add a Code-behind page to a Partial View

Seems this wasn't particularly tricky, and is quite do-able This answer worked for a Partial 'ViewUserControl' but the same should apply for a Normal MVC 'ViewPage' as well

Ok.

First: Add a Class file with the convention of .cs (i.e. view.ascx.cs)

Second: Add "using System.Web.Mvc;" to the class

Third: Change the Class to Inherit from "ViewUserControl<>"

Fourth: Add the following to the View's header:

CodeBehind="View.ascx.cs" Inherits="Project.Views.Shared.View"

Fifthly: Copy the files out of the solution and drag back in to reassociate the two together

Note: For this to work with a Normal MVC View you just need to inherit the class from "ViewPage"

link|flag
1  
Thanks for that. I've found a quicker way to associate the two files together is to right-click them, choose Exclude From Project, then with 'Show All Files' selected right-click them again and re-include them. – Andrew Oct 10 at 19:43

Your Answer

Get an OpenID
or

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