Search

You searched for the word(s): userid:789259

Matching Posts

  • Re: How to deploy MVC app to shared hosting?

    I am deploying and asp.net mvc application with reliablesite.net, and I have just succeeded in getting it working with extensionless URLs. srulyt was correct - you need to set the IIS7 ASP.NET integrated pipeline on. For reliablesite.net, go into your DotNetPanel management interface, select your website and then the Extensions tab. Here they have an option to switch the ASP.NET option from "2.0" to "2.0 Integrated Pipeline". This should do the trick. Cheers Phil
    Posted to ASP.NET MVC (Forum) by philgeorge on 5/1/2008
  • Re: directory listing for Website default page

    Thanks, Richard. You were right, I had to add the default.aspx route: routes.Add( new Route ( "Default.aspx" , new MvcRouteHandler ()) { Defaults = new RouteValueDictionary ( new { controller = "Home" , action = "Main" , id = "" }) }); I also had to restore the Default.aspx file in the root folder for this route to be activated. I had previously deleted it thinking I was helpfully cleaning up all aspx files, but clearly it needs to be present as a default document
    Posted to ASP.NET MVC (Forum) by philgeorge on 3/6/2008
  • directory listing for Website default page

    After following things passively for a couple of months, I've decided to dive in to using the ASP.NET MVC framework now that preview 2 is out. I'm using Visual Web Developer 2008 Express, so I had to do without the templates and manually set everything up myself with reference to the release notes and various blog entries. Amongst other things, I added < add name = " UrlRoutingModule " type = " System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture
    Posted to ASP.NET MVC (Forum) by philgeorge on 3/6/2008
Page 1 of 1 (3 items)