How to set startup page for asp.net mvc aplication ?

Little ASP.NET MVC reminder :)

  • Project's Properties

  • Web tab

  • Select the Specific Page

continue >>

NuPack

NuPack is a free, open source developer focused package management system for the .NET platform intent on simplifying the process of incorporating third party libraries into a .NET application during development.

Other Detail

continue >>

asp.net routing -1

Add your project Global.asax

  • using System.Web.Routing;

protected void Application_Start(object sender, EventArgs e)
{
   RegisterRoutes(RouteTable.Routes);
}

protected void RegisterRoutes(RouteCollection routes)
{
            routes.MapPageRoute("Default",
            "index",
            "~/default.aspx");

            routes.MapPageRoute("Signup",
            "Signup",
            "~/signup.aspx");
}

continue >>

Asp.net MVC - 1

Asp.net MVC notları ufak ufak yazılar göndericem küçük sorunlara çabucak erişebilmek adına ilk olarak css ve javascript dosyasının yüklenmeme durumunda yapılması gereken

continue >>
Page 1 of 1   1