Questions tagged [asp.net-mvc]

The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern.

The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller.

A model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the application. A controller handles interactions and updates the model to reflect a change in state of the application, and then passes information to the view. A view accepts necessary information from the controller and renders a user interface to display that.

Also check out Nuget to use MvcScaffold to quickly build boiler plate code from POCO classes.

The latest stable version - MVC 3 - is available from the Microsoft Download Center website.

The latest announcements from Microsoft usually come from Scott Guthrie's blog. Other notable blogs relating to MVC include Phil Haack, Scott Hanselman, and Brad Wilson.

References:

40 questions
22
votes
3 answers

Should my URLs be lowercase?

According to Understanding SEO Friendly URL Syntax Practices I should change http://example.com/Hello-Dolly To http://example.com/hello-dolly The reasons given are: URLs, in general, are case-sensitive it will simplify any case sensitive SEO…
Rowan Freeman
  • 322
  • 3
  • 10
14
votes
2 answers

Update .NET website without reloading

I used to develop websites in PHP and ASP classic and if something needed to be changed. You could just alter a single/several files and nobody would really notice. Perhaps if somebody would request the changed file during upload, but that's like…
Hugo Delsing
  • 143
  • 1
  • 9
9
votes
5 answers

Whats is the best Windows VPS hosting?

Possible Duplicate: How to find web hosting that meets my requirements? I'm currently using shared hosting. I want more control over my IIS and also I need to run in full trust. There are a lot of options out there for Windows VPS hosting. Which…
Donny V.
  • 227
  • 2
  • 4
6
votes
8 answers

Is sitemap really important?

Is the sitemap really important? I ask this because I couldn't see the sitemaps of big websites such as Twitter, Facebook and others... The sitemap should be at "/sitemap.xml", "/sitemap.xml.gz" or "/sitemap.gz", isn't it? How do you recommend to…
elranu
  • 163
  • 6
6
votes
2 answers

Orchard CMS Internet shop

Does anyone know where to find tutorial how to make an Internet shop by using Orchard CMS? I'm new at web programming, but I have experience with .Net technologies.
Sham
4
votes
2 answers

Just really confused about setting up my site on Amazon EC2

So I have a site that is developed in ASP.NET MVC2. I use a local instance of SQL Server 2008 R2 to test with, and that's where all my tables/stored procs/etc. are. Now, I want find a web server for the site and make it available to the public, and…
slandau
  • 157
  • 4
4
votes
1 answer

How to avoid request of all images used for different devices using media query?

I want to know, how can I avoid loading all images I created for different devices using media query. Currently my mark up look like below : Fresh from garden
3
votes
5 answers

High Traffic Web Host Solution?

Possible Duplicate: How to find web hosting that meets my requirements? I'm currently shopping around for a web host for our website we are hoping to release in the near future. This is my first real step into this area. Just wondering what I…
Calsy
3
votes
1 answer

Does Orchard have Active Directory authentication?

I've been looking over the Orchard CMS and it seems like a capable CMS and mature enough to do what we need here. However, one thing I haven't been able to find info on is AD authentication. We plan to use it as a Intranet page and wiki. Since all…
dotnetN00b
  • 131
  • 3
3
votes
3 answers

Which is the practical difference between a server and a web server?

Let's consider the following example: I have a solution made with C# on Visual Studio, it has a multi-tier architecture, the different layers are the following: Data Model (Library) Data Access (Library) Business Logic …
franz1
  • 823
  • 1
  • 6
  • 16
3
votes
2 answers

How can I use cookie-free domains with Microsoft Azure portal?

My website installed in the Microsoft's Azure portal. My website using asp.net and framework(sitecore cms). It's C#. I checked my website using gtmetrix. It recommends using cookie-free domains. I want to try it, But I'm confused as to how to set…
Success Man
  • 345
  • 4
  • 10
2
votes
1 answer

Google reports soft 404 errors and doesn't remove several of my website URLs from the index after I 301 redirect them

I want to remove multiple URL in my website (developed in ASP MVC). All these URL have the format www.example.com/planning/xxx I have already changed the code to make these URLs 301 redirect. I expact that would indicate to robots to remove the…
2
votes
0 answers

Is my shared host skimping on memory? Should I switch hosts or try and decrease memory usage in my MVC app?

I am running a .NET MVC 4 site on a shared host and am getting frequent out of memory errors. They are most common after updating the web.config file and / or logging in. I suspect the host is skimping on memory and am considering moving to…
Carmax
  • 183
  • 1
  • 7
2
votes
1 answer

How to deploy ASP.Net MVC 5 to IIS 8 running Windows Server 2012 and SQL Server 2012

I developed an application in ASP.Net MVC 5 with database SQL Server 2012 now I want to deploy it in Windows Server 2012 with IIS 8 I followed this link: http://www.asp.net/mvc/overview/deployment/visual-studio-web-deployment/deploying-to-iis but…
MJ X
  • 203
  • 1
  • 3
  • 6
2
votes
3 answers

Hosting solutions for 10,000 daily users, asp .net 4, sql server 2008 R2?

Possible Duplicate: How to find web hosting that meets my requirements? I've run a custom built social network on top of asp .net mvc & sql server 2005 for the last 2 years on discountasp .net I've been satisfied with the value as it's cost me…
1
2 3