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.

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

Latest announcements from Microsoft usually come from Scott Guthrie's blog. Other notable blogs relating to MVC include Phil Haack and Scott Hanselman.

226 questions
0
votes
0 answers

IIS Setting Response header makes loading site very slow

My site loads very slow. I have enabled Failed Request Tracing to trace status 200 pages. When I view the trace, I notice that following setting the response header takes a long time: GENERAL_SET_RESPONSE_HEADER HeaderName="X-AspNetMvc-Version",…
Martijn
  • 103
  • 5
0
votes
1 answer

Do I need to have the asp.net mvc framework to run my asp.net mvc apps on a web server?

I have been looking for a web hosting service for a while and I would like to know if I need the asp.net framework besides the .net framework to run my asp.net mvc applications? And I also want to ask for recomended web hosting that provides the…
0
votes
1 answer

limitations of migrating an existing ASP.NET MVC application to Windows Azure

We are trying to migrate our web app hosted in go daddy to Azure. And i am concerned about feautures not avalibale in azure after reading this post about Top 7 Concerns Migrating to Windows Azure. Will cookie across domains work ? We have a site…
Shaiju T
  • 101
  • 4
0
votes
1 answer

Windows server 2012, unable to access site in some ports from outside

We have our website hosted in a windows server 2012 server. Some staging sites are also hosted on same server in different port numbers like 5015, 5014. Now I wanted one more site to be added and have added it n the port 8025, Im able to access the…
sudheshna
  • 51
  • 4
0
votes
1 answer

How to host two web applications with different "domains" in IIS 8

I have setup to entries in my hosts file: 127.0.0.1 mymvcapp.dev www.mymvcapp.dev 127.0.0.1 mywebapi.dev www.mywebapi.dev In the first I want to host my mvc app and the second entry is for my web api app. Now I have added these two bindings to my…
Legenda
  • 89
  • 7
0
votes
0 answers

Windows update Microsoft.NET Framework 4.6.1 for Windows Server 2012 R2

I have a Windows 2012 server where I am getting this update as an important update. "Microsoft .NET Framework 4.6.1 for Windows Server 2012 R2 for x64 (KB3102467)". I have a .NET MVC application on this server with Identity impersonation. When this…
progrAmmar
  • 171
  • 2
  • 2
  • 6
0
votes
0 answers

web.config rewrite rule from subdomain to folder using root web.configs connection string

We have a rewrite rule in place to forward demo.website.com to the subfolder which contains the Demo website (website.com/Demo). The problem is that it is still using the root web.configs db connection, instead of the connection string in…
Jack
  • 119
  • 4
0
votes
2 answers

IIS application Alias

I have an application loaded on my default website http:///AppName now I have received a request for the exact same app, but to have the url "customised" for a specific customer . There is no actual value to this. just so that it looks special for…
Crudler
  • 207
  • 1
  • 3
  • 10
0
votes
1 answer

ServerManager.OpenRemote error 80040154 CLSID {2b72133b-3f5b-4602-8952-803546ce3344} in ASP.NET MVC 4

I have a console app, which is using Microsoft.Web.Administration to remotely manage IIS on remote server (I used this https://stackoverflow.com/questions/22458410/credentials-for-servermanager-openremote - modified ahadmin properties, opened TCP…
myroslava72
  • 101
  • 1
  • 3
0
votes
1 answer

Images not Rendering on IIS7 Running ASP.NET MVC App

The site 63.208.1.26/FreightRateCentral is not rendering images. Chrome reports HTTP 404 for each of them. This is a fresh install of Windows 2008 R2 and IIS 7. At first, I thought that it was a .NET framework issues, but I ensured that the…
SidC
  • 369
  • 3
  • 9
  • 23
0
votes
1 answer

Building a bulk email messaging solution

I code with c sharp asp.net. I have a business app. I need to send emails in large mass. But when I look at the existing email marketing solutions using them would increase my cost overhead. I intend sending as much as 10 million emails in a month.…
0
votes
1 answer

Granular Redirects in IIS and ASP.NET MVC

The marketing people decided that they want us to change the URL of a page. So anything like: http://www.boyscouts.org/NewClubOpening/ http://www.boyscouts.org/NewClubOpening?c=16 http://www.boyscouts.org/NewClubOpening?c=16&s=invite Should…
Slinky
  • 1,027
  • 3
  • 15
  • 26
0
votes
1 answer

Access a web application with a port number iis

I have an ASP.NET application that I'm trying to upload to a server. the server is Windows Server 2008 R2 Standard with IIS 7.5. The server IP address is like so: 212.199.xxx.yyy:zzz and is accessible using RDP. I placed the application files in…
Yoav
  • 101
  • 3
0
votes
1 answer

How to make IIS 7 pass all requests to asp.net

I have IIS 7 running an ASP.NET MVC application I would like all URLs, regardless of any extension (eg *.csv, *.xml) to be handled by asp.net (ideally just going through the normal MVC rooting). I used to be able to do this (using a wild card mapped…
zod
  • 103
  • 1
  • 3
0
votes
1 answer

IIS site blocks internet connection

I'm fighting this problem for some time. When my ASP.NET MVC4 website starts to get served on my locally installed IIS (runs on port 8081, not 80!), internet connectivity gets blocked. Just like that. I'm confused because it is really strange. It…