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
7
votes
6 answers

How to show a maintenance page for website when our network is down

We host our ASP.NET web sites internally (within our DMZ). When we are doing network maintenance, etc we would like to have our sites display a maintenance page, but our network is down so our hosting servers are off. We don't host our DNS entries…
SteveBering
  • 171
  • 1
  • 2
7
votes
3 answers

Creating cookieless application on development machine with asp.net

I am thinking about setting up a new domain to host static content on my website and have it cookieless just like Stackoverflow with their static domain. So before going ahead and buying the domain and setting it up I wanted to test it on my…
ak3nat0n
  • 183
  • 4
7
votes
2 answers

Windows Server 2008 - IIS 7 - ASP.NET - Does my web server go to sleep? How do I keep it awake?

It seems that my asp.net sites on my web server are very slow to load if they have not been accessed in a while. Does the ASP.NET processor go into suspend or sleep mode if it has gone unused for a period of time? Is it better for me to fix this by…
7
votes
3 answers

Record load time of web pages

I have been asked to investigate a way of record how long it a full page request is on our website. i.e. how long it takes from when a user clicks on a link till the page has finished loading. Now I've had a look at Google Analytics and this appears…
Neil
  • 83
  • 6
6
votes
2 answers

Should i use processModel autoConfig="true" for my production server?

Should i use processModel autoConfig="true" for my production server or should i customize values for processmodel? Edit I do have slowdowns. The CPU is maxing out. The app itself is not that CPU intensive. But we do use EF with sql server.
ps.
  • 125
  • 1
  • 9
6
votes
1 answer

Difference between limit number of connections setting in IIS and the Max Pool Size

I am trying to understand the difference between the "Max Pool Size" setting in the connection-string against the Limit setting in the IIS server manager...whether they are referring to the same thing? if not what does each do? To make it clear, I…
OAH
  • 205
  • 1
  • 2
  • 5
6
votes
3 answers

Vanilla Windows vs Windows Server

I probably should have asked this question a LONG time ago and I expect to be laughed out of this forum, but I NEED find the answer to this seemingly rudimentary question... If I intend to host a .NET web application, why would I want to use Windows…
James Jones
  • 551
  • 2
  • 7
  • 15
6
votes
2 answers

Where are my Azure Temp Files?

I have a raygun error on an Azure Web App that baffles me. d:\local\Temporary ASP.NET Files\root\8c572dab\d52156ac\ App_Web_636035960914530576dbc451921d-d5ba-4ab9-ae23- 3aebe17a2fcd.cshtml.ae8ccf29.453z6dsh.0.cs(151): error CS1528: Expected ; or =…
rarrarrarrr
  • 163
  • 1
  • 1
  • 5
6
votes
2 answers

Azure Web App Port Mapping/Forwarding

Is it possible to map or forward an external port x to port 80 in a Web App on Azure with any of the tools provides by Azure (e. g. Traffic Manager etc.). I'm not talking about VMs, I'm talking about the more abstract App Service. Given is the…
stay2be
  • 63
  • 1
  • 1
  • 3
6
votes
1 answer

ASP.NET application on "IIS 8.5" on "Windows Server 2012 R2" performs poorly compared with "IIS 7.5" on a "Windows Server 2008 R2"

We have the same ASP.NET application running on a couple of servers: one instance runs under IIS 8.5 on Windows Server *2012* R2 two instances run under IIS 7.5 on Windows Server *2008* R2 What bugs me is that the newer machine seems to perform…
Oliver
  • 311
  • 1
  • 5
  • 13
6
votes
3 answers

High CPU usage of IIS process (w3wp.exe) because of many slow clr.dll!CopyPDBs

I am using Windows Server 2008 R2 Enterprise with IIS 7.5, hosting ASP.NET MVC 5 applications. I've noticed lately that one of the w3wp.exe processes is using extremely high CPU bandwidth: After investigated little bit more, I've also noticed that…
Nikolay Kostov
  • 161
  • 1
  • 1
  • 5
6
votes
2 answers

SQL Server Connection Timeout after load brought onto IIS web server

We have MSSQL 2008 R2 running on windows 2008 r2 it's being hit by 2 server 2008 r2 webservers running asp.net. Both are joined to an active directory domain and use integrated authentication to connect to sql server. The IIS Application pool has…
Paul Lemke
  • 175
  • 1
  • 1
  • 10
6
votes
2 answers

How do I prevent IIS 8 from stopping idle ASP.NET applications?

I have an asp.net application running on Windows 2012 in IIS 8 that has a very time consuming application start process (essentially the code running in the Application_Start() event can take up to 2 minutes). Thus I'd like to minimize the number of…
Lambo Jayapalan
  • 195
  • 1
  • 3
  • 9
6
votes
3 answers

How to debug why w3wp.exe crashes randomly?

On the main production server, the IIS worker process crashes sometimes. From the event viewer I get the following information. Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7a5f8 Faulting module name:…
shashi
  • 163
  • 1
  • 1
  • 5
6
votes
3 answers

How many domains can be bound with one SSL certificate?

Let say I have an ASP.NEt application which is bound with more than 10 domains using host headers. Is one certificate is enough for me? or I need more than 1 certificate for each domain? If I need 1 certificate, then adding a new domain means…