Little ASP.NET MVC reminder :)
-
Project's Properties
-
Web tab
-
Select the Specific Page
by Ilyax on 27. July 2011 in Development
Little ASP.NET MVC reminder :)
Project's Properties
Web tab
Select the Specific Page
by Ilyax on 12. October 2010 in Tools
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.
by Ilyax on 22. August 2010 in Development
Add your project Global.asax
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");
}
by Ilyax on 10. March 2010 in Development
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
© Copyright 2007-2010 iLyax.