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
2
votes
1 answer

Application pool is stopped when the site is on high traffic

Sorry if I am asking a silly question here. We are having problem with one of our websites. Its application pool is stopped whenever the site has high traffic as we notice it always happens when the company send out EDM and the number of concurrent…
2
votes
2 answers

How do I get a friendly error page to replace the asp.net error page for url "WEB-INF./web.xml"?

This url is part of a pci compliance scan and it is flagging the very sparse asp.net error page returned, which on the live site is a 500 status code and the text Server Error in '/' Application. Runtime Error Description: An exception occurred…
quentin-starin
  • 141
  • 1
  • 8
2
votes
1 answer

What happens to requests to IIS when I change Application Physical Directory

I'm aiming for a zero-downtime deployment of our ASP.NET 4.0 web application and the Internets say that the kosher way of doing this is as follows: Copy new files over to c:\inetpub\my-site-new-version Change application physical directory from…
Anton Gogolev
  • 1,582
  • 4
  • 16
  • 22
2
votes
1 answer

Windows server 2012, missing WMI ASPNET counters

I've been using the following WMI query to check how many IIS sites are currently running on my Windows 2008 webservers: SELECT ApplicationsRunning FROM Win32_PerfRawData_ASPNET4030319_ASPNETv4030319 After replacing these webservers with 2012…
Steffen
  • 337
  • 4
  • 17
2
votes
1 answer

MsDepSvc.exe send files/sensitive information over port 80?

I'm reading up on WebDeploy, but I'm a bit confused about the differences between the service that runs on port 80 (Remote Agent Service) and port 8172 (IIS Deployment handler?). As far as I can tell, the remote agent service allows servers to…
Joe Zack
  • 123
  • 5
2
votes
3 answers

Protecting static content with forms authentication under IIS8

I've got an ASP.NET (.Net 4) site hosted on an IIS8 (Windows 2012) server, with forms authentication in place. Everything's working fine. I'd now like to introduce some static content - HTML "help files" - but I don't want these to be "deep…
KenD
  • 1,147
  • 2
  • 17
  • 37
2
votes
4 answers

Website not coming after deployment

I just deployed my website (overwriting the files which was previously working in c:\inetpub\webapps\websitename folder). Now the website is not coming up .. it says it is loading and seems to be stuck please help I am using IIS to deploy and I am…
Jaison
2
votes
1 answer

Active Sessions Performance Counter for Web Server

I would like to monitor the number of active sessions for my ASP.Net 4.0. It is hosted on IIS7 Windows 2008 Server. When I looked at the Performance counter, I saw many instances. How could I know which instance is the application instance I want…
TTCG
  • 121
  • 1
  • 3
2
votes
0 answers

"Error 7 (net::ERR_TIMED_OUT)" in chrome for local web app

Since about two weeks (around when Google updated stable to version 26), our internal users began receiving periodical timeouts upon requesting pages within our locally hosted app (from Google Chrome). Specifically: This webpage is not available.…
David Budiac
  • 515
  • 1
  • 6
  • 11
2
votes
0 answers

How do I configure mod_mono to use ASP.NET 4?

I am running a VPS with Centos 6.3, with WHM 11.34.1 (build 11). I wish to use mod_mono to host an ASP.NET 4 application. (Background: I am rewriting a hobby PHP website in ASP.NET MVC 4, and want to host it on the same machine. I would like to…
Mike Caron
  • 237
  • 2
  • 13
2
votes
2 answers

App pools recycling for no reason

We have a problem on one of our production servers (Windows 2003 server). It appears all app pools are recycling every 10 seconds or so (all at the same time). Needless to say this is negatively affects applications' performance. Symptoms: -…
liho1eye
  • 123
  • 2
  • 9
2
votes
3 answers

IIS service is running as Local System account, so how do I give it shared directory permissions?

My ASP page reads a file from a shared directory and sends it to the user. Response.Clear(); Response.ContentType = "application/octet-stream"; Response.AddHeader("Content-Disposition:", string.Format("attachment;…
yyyykk
  • 41
  • 2
  • 2
  • 3
2
votes
1 answer

Monitoring "Request Wait Time" in PerfMon

A website I'm load testing is adding requests to the iis request queue. I can see the queue size getting bigger using the relevant performance counter: \ASP.NET\Requests Queued However I'm trying to see the "Request wait time" and I've added the…
CraftyFella
  • 121
  • 1
  • 4
2
votes
1 answer

Application under a site in IIS evaluates ~ to the website root not the virtual directory

I have a website in IIS lets call it QA.local. Under this root site I want to set up multiple applications that reside in a set of virtual directories E.G. QA.local/app1 and QA.local/app2. The problem is that whenever an application goes to resolve…
Marissa
  • 123
  • 4
2
votes
0 answers

IIS 6.5 application hangs - strange behavior

Ok, here are the symptoms in chronological order: (iis 6.5 - asp.net 2.0 - windows server 2003) Application pool drops all requests. (dropped, and abandoned by reqQueue) Trying to log into application from VPN connection only shows hourglass, never…