Upon publishing my MVC 3 Web Application to my website I get an error stating an Object reference not set to an instance of an object.

The 'error' line is: Line 2: ViewBag.Title = "Index";

This is my Index view: @{ Layout = "~/Views/Shared/_Layout.cshtml"; }

This is my Home Controller:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace WebApplication.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/

        public ActionResult Index()
        {
            return View();
        }

    }
}

I have uploaded DLL's: System.Web.Helpers System.Web.Mvc System.Web.Razor System.Web.WebPages System.Web.WebPages.Deployment System.Web.WebPages.Razor

Thanks for any assistance

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

When you look in /Views/Shared/_Layout.cshtml, you will probably see something like this:

<title>@ViewBag.Title</title>

It is assuming this property has been set somewhere. Usually, you set this in your child views. So the easiest solution is to modify your Index.cshtml view so that it resembles something like this:

@{
     ViewBag.Title = "Title of the page";
     Layout = "~/Views/Shared/_Layout.cshtml";
}
link|improve this answer
Thanks for the reply, I have made the changes as you suggested but now I am getting an "Object reference not set to an instance of an object." on the 'Layout =' part. Should I be using WebPages 1.0.0.0 or WebPages 2.0.0.0 I uploaded the WebPages 2.0.0.0 dll – ElveMagicMike Feb 16 at 15:05
When you look at the properties of the System.Web.WebPages reference in your project in Visual Studio it will tell you which version you need. If you need more help with "bin deploying" your MVC 3 application, you can have a look at this guide: hanselman.com/blog/… – Kristof Claes Feb 16 at 15:17
Thanks, I should be using WebPages 1.0.0.0, how do I upgrade to version 2.0.0.0? – ElveMagicMike Feb 16 at 15:19
I don't think you should. Just upload the assemblies from the blogpost. – Kristof Claes Feb 16 at 15:22
Well I uploaded WebPages 1.0.0.0 instead of the version 2 and my website now works, should I be changing the version to 2.0.0.0 in both Web.config files to use WebPages 2.0.0.0 ? – ElveMagicMike Feb 16 at 15:23
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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