Questions tagged [asp.net]

Web application framework developed by Microsoft

ASP.NET is a web application framework developed by Microsoft that allows web developers to create dynamic web sites and applications.

First released in January 2002 it is the successor to Microsoft's Active Server Pages (ASP) technology.

ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language such as C# or VB.NET.

1234 questions
4
votes
6 answers

Calling LoadLibraryEx on ISAPI filter failed (v4.0.30319)

I installed .Net 1.1 on a Windows Server 2008 (which already had .NET 4 installed). Afterwards, I started getting the following error: HTTP Error 500.0 - Internal Server Error Calling LoadLibraryEx on ISAPI…
robasta
  • 215
  • 1
  • 3
  • 12
4
votes
1 answer

stopping fastcgi-mono-server gracefully, website content updating with no need to restart it

I've been playing a lot recently with Mono 2.10.5 with .NET 4 and MVC 3 with razor views. I am now hosting my website with nginx and fastcgi-mono-server4 configured. Although the website is still not known to public (and will not be until it reaches…
Marcelo Zabani
  • 201
  • 1
  • 5
4
votes
5 answers

IIS7Register failed with HRESULT 800700b7: 'Cannot create a file when that file already exists.'

I am trying to re-install ASP.NET on IIS7 running in Win7/64, which magically stopped working all of as sudden. When I run aspnet_regiis -i, I get an error message that says Finished installing ASP.NET (4.0.30319). Setup has detected some errors…
Optimax
  • 151
  • 1
  • 1
  • 5
4
votes
1 answer

Diagnose cause of long running requests in IIS 7.0

We are running an ASP.NET web application on IIS 7.0, Windows Server 2008 R2, with SQL Server 2008 R2 for DB. On weekends, when the traffic is high, the request queue length in the IIS servers increase (up to 800 requests) and then drops, every…
4
votes
2 answers

What differences are between IIS 7.0 and IIS 7.5?

I thought that IIS 7.0 and IIS 7.5 have (from the application developer point of view) nearly same features. Then, I found that certain features are not working on IIS 7.0. Are there more features available in IIS 7.5 that are missing in IIS 7.0…
TN.
  • 557
  • 5
  • 10
  • 21
4
votes
2 answers

Speed up asp.net Development server

I am running a website in ASP.Net using the development server, which is insanely slow to load a page with no apparent reason since it is fast in production. Are there any tips to speed up the ASP.net Development server or alternatives to using…
sammarcow
  • 245
  • 1
  • 3
  • 14
4
votes
1 answer

How much memory w3wp.exe consume

I have 32 gb ram on my server, And my w3wp.exe process crashes when it reaches around 1gb of memory. I monitored it through task manager. It is a 64 bit machine (Browser Requests are not responded when it reaches 1gb and application pool gets…
user758405
  • 41
  • 1
  • 2
4
votes
3 answers

How Can I Log Outbound HTTP Requests From My Web Applications?

One of our apps is calling a third-party webservice which has recently been switched to a different URI. We need to investigate this to try and see where the old address is being used (the code/config has been modified to the new one already). Is…
immutabl
  • 213
  • 2
  • 9
4
votes
1 answer

Getting 404.2 Error on IIS 7.0

I'm getting the following error when trying view my freshly deployed application on IIS 7.0 on a Windows Server Standard server with Service Pack 2: HTTP Error 404.2 - Not Found The page you are requesting cannot be served because of the ISAPI…
Jordan
  • 163
  • 1
  • 4
4
votes
1 answer

Backup database at certain intervals?

My client would like to have the database backed up several times per day, as well as the ability to backup the database manually. I've created a page to backup the database manually, it just calls a stored procedure that backs up the database. But…
Steven
  • 223
  • 1
  • 3
  • 5
4
votes
7 answers

Load balanced IIS Servers with ASP.NET InProc Session

Has anyone configured IIS 6.0 loadbalancing on win 2003 servers with ASP.NET app using InProc Sessions. How can this be achieved?
4
votes
1 answer

Even admin cant register ASP.NET 4

When I try running the following command, logged in as admin, I get the accompanying error: C:\Windows\Microsoft.NET\Framework64\v4.0.30319>aspnet_regiis -i An error has occurred: 0x8007b799 You must have administrative rights on this machine in…
ProfK
  • 493
  • 5
  • 9
  • 28
4
votes
4 answers

App Pool limitations

We currently have about 600 .net sites in a single app pool. We're starting to get out of memory exceptions and have to recycle the app pool to fix the problem. I know it's generally a good idea to have separate app pools per site, but i'm not sure…
aaron
4
votes
4 answers

ASP/ASP.NET Best way to handle write permissions?

Say you have a public ASP.NET (or Classic ASP) application on IIS with a script/page that needs to write or update files in a specific folder that is located within the web publishing folder tree. 1) What is the proper way to set this up? My main…
Matias Nino
  • 1,392
  • 7
  • 25
  • 40
4
votes
1 answer

Best Practice for Setting Up Secure Website

When Jeff and the StackOverflow team were interviewed on Hanselminutes last fall, Scott was critical of some of the decisions that were made with respect to securing the StackOverflow servers. My question is, what is the recommended approach to…
Tim Lentine
  • 183
  • 4
  • 9