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
1
vote
3 answers

ASP.NET sending email through exchange problem

I have an exchange 2010 server running on Windows 2008 R2, I also have a remote webserver running Windows 2003 with multiple sites on it (all asp.net mvc 2 sites). I setup a Transport in exchange and all the websites on my remote web server can send…
1
vote
1 answer

IIS 7: Redirecting from non existing subdomains to a subfolder

I'm working on an ASP.NET MVC Multi Tenancy app. Right now I managed to create dynamic subfolders, for instance some one registers with username "bob" and gets the following website: domain.com/bob My next goal is to provide subdomains:…
Alex
  • 139
  • 10
1
vote
3 answers

Traditional ASP.NET application in subdirectory of an MVC application

Windows Server 2003, IIS6. We're trying to deploy a non-MVC ASP.NET web application as a subdirectory of an MVC application. However the ASP.NET application in the subdirectory is failing with the message "Could not load file or assembly…
David
  • 111
  • 1
  • 5
1
vote
1 answer

Setup asp.net mvc application as subdomain website

I'm trying to setup a local application on a subdomain on our company server. There is already an installation of sharepoint running on http://companyweb/, but I would like my application to run on http://orders.companyweb/. I tried creating a new…
a_m0d
  • 155
  • 1
  • 3
  • 13
1
vote
2 answers

Has anyone seen .NET 4 RC MVC2 RTM web apps hogging CPU on Win2008 R2?

We have a number of .NET4 RC ASP.NET MVC2 RTM web applications running on a Windows 2008 R2 server. All behave very well except one that we regularly find running at 99% CPU. It is the most complex of the applications, but is not doing anything…
kim3er
  • 485
  • 2
  • 6
  • 7
1
vote
1 answer

IIS Application requires Forms Authentication for everything

At the moment, I'm trying to develop an ASP.NET MVC application using a local IIS server (Dev Server was just too slow). However, every page request, including CSS/JS results in a redirect to the login page. Anyone know what's going on?
jameszhao00
  • 111
  • 1
1
vote
1 answer

IIS stop bogus API

In IIS can it stop bogus API calls? Yesterday I got flooded with something that was trying to see if a page is on the site. They got the 404 but the application still had to check to see if that was a good page in the application. Can IIS stop this…
Jefferson
  • 13
  • 4
1
vote
0 answers

How to establish requirements for a virtual machine for running a kind of MES system

I want to upgrade my existing VM to (Windows Server, more RAM, better CPU, etc) - but I do not know how to evaluate current needs. I am not a software engineer :) and I need your help in defining the proper configuration for a VM. This is the VM…
Lucian Bumb
  • 111
  • 2
0
votes
2 answers

How can I run an app that works on IIS 10 in IIS 7 or IIS 8.5?

I tested the default MVC template that visual 2017 provides, and tested it on IIS 10,in my local machine, and works great. When I test it on Windows server 2012 R2 (IIS 8.5) or in Windows server 2008 (IIS 7) I get a lot of errors and all I can do is…
0
votes
0 answers

ASP .NET CORE 2.0 web application on IIS showing sqlite error 14 "unable to open database file"

So I had run into a problem when I attempted to host a web application. Everything works fine in visual studio and when I use IIS express for debugging, but when I publish it and upload it to my server to be hosted this error pops up (title). I am…
M W
  • 1
  • 1
0
votes
3 answers

Troubleshooting intermittantly long 'page loading' problem

Working off IIS 7 with an asp.net mvc app. Most page accesses are lightening quick. Sometimes the browser reports 'page loading' for an exceptionally long time. We are still in the development/testing mode so it's not a network/bandwidth issue.…
justSteve
  • 859
  • 1
  • 7
  • 19
0
votes
2 answers

How to configure IIS 10 to read from local SQL database file?

I have been trying to deploy original ASP .NET Web Application using MVC template with authentication via a local SQL database file. So far, I am able to get it to work on my computer. When I publish it to a folder on a remote server, I can't seem…
Ice Drake
  • 25
  • 1
  • 3
  • 9
0
votes
1 answer

Windows Authentication not working on root site of an IIS 8.5 based web site

I have a intranet web site that is using Windows Authentication. When it is the root web application of the site I get a 403.14 error. When I have a sub-application on the same server Windows authentication works correctly for those apps. All sites…
John S
  • 125
  • 6
0
votes
1 answer

IIS - Request filtering - 2 Domain Pointing to same physical path

Is it possible to have different request filtering rules for two domain pointing to same site(Physical folder)? Example - I've an Umbraco site and I want to point two domain to same physical folder/website. One domain will have access to admin…
Brijesh
  • 101
0
votes
2 answers

Deploy multiple ASP.NET MVC sites on the same machine

I already have an ASP.NET site running in my Windows Server 2003 (computer name: myserver), so whenever I want to access the site, I would just have to type http://myserver. The issue now is can I host another ASP.NET MVC site on that server 2003…
Graviton
  • 2,865
  • 12
  • 42
  • 64