IIS 7.5 asp.net application not running - asp.net

My asp.net MVC application not working in IIS 7.5 on Windows 7, but it's working fine in IIS 8 with Windows 10.
In my live server I am facing the same. In my server I have Windows 2012 r2
I was creating a demo application, but faced the same issue.
Anyone had this issue?

ASP.NET 4 was not registered in IIS. had to run the following command in the command line/run
32bit (x86) Windows:
%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir
64bit (x64) Windows:
%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir

Related

Minimum IIS version for ASP.NET Core

On a windows server 2008 R2 with IIS 7 installed, will I be able to install an ASP.NET core application
From https://github.com/aspnet/IISIntegration/issues/105 i read that AspNetCoreModule v0.8 is based on a fork of HttpPlatformHandler 1.2.
However I was unable to install HttpPlatformHandler on IIS 7.

Classic ASP invokes dll - works in 32 bit OS but fails in 64 bit OS with IIS 7.5

I am working on a Classic ASP application. It used dlls to upload and download files to web server.
FunctionUpload.dll is registered using the regsvr32.exe command. It works fine in Windows 2003 server , 32 bit OS with IIS 6.
Now the server is upgraded to Windows 2008 64 bit OS with IIS 7.5. I registered the dll using regsvr32.exe command in 64 bit OS. ( regsvr32.exe in C:\Windows\SysWOW64 folder using Admin login)
When the ASP code tried to create an object of that dll it fails.
Set download = Server.CreateObject("FunctionUpload.File")
Please let me know what steps need to be done to access the dll from ASP code on a server with windows 2008 64 bit OS with IIS 7.5?
How to check if the dll is registered properly on a 64 bit OS?
Should I make any changes in the IIS 7.5 settings to invoke that dll?
Thanks
Ashok
you have to enable 32-bit applications in your iis under your application pool

can my .NET framework 4 web application run on windows 8?

I've been developing a web application with an expected client machine OS of XP. I just found out that the customer upgraded their machines to Windows 8.
So my questions are:
Can I still deploy my web application (.NET 4.0 and 2008 SQL Server express backend) on a Win 8 machine as expected?
Are there any concerns for running my app on Win 8?
I haven't had time to even check out Windows 8 yet as I was not expecting this.
Yes, .NET 4.0 application can work without any problems on Windows 8 and Windows Server 2008/2012.

Can I deploy ASP.NET 4.0 application on Windows XP?

I want to start a small project. The target platform on which I have to deploy my system is Windows XP. I want to develop it in ASP.NET 4.0. Can I deploy ASP.NET 4.0 application on Windows XP?
As long as you have Service Pack 3 installed, you can install the .Net framework v4.0 on windows XP.
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992&displaylang=en

Deploying mvc project to iis 6.0

I am trying to deploy my mvc project on windows server 2003 IIS6.
I have enabled the wildcard mapping
.net framework 3.5 sp1 and mvc 1.0 is installed on the machine
I am still getting 404 when I try to access the site
What other steps should I debug to solve this problem?
Ps: Other non-mvc .net project is running fine on the machine
my problem was not referencing the 64bit version of aspnet_isapi.dll - i am running on win2003 64bit

Resources