Tagged Questions

65
votes
16answers
42k views

ASP.net vs PHP - performance, future-proofing & ease of development [closed]

I was asked yesterday by a client whether it was better for him to run his high-availability / throughput shopping site on ASP.net or PHP. He's ready to make a "Ten Year Decision," so he needs to know ...
61
votes
12answers
16k views

ASP.NET MVC Performance

I found some wild remarks that ASP.NET MVC is 30x faster than ASP.NET WebForms. What real performance difference is there, has this been measured and what are the performance benefits. This is to ...
21
votes
12answers
1k views

Speeding up an ASP.Net Web Site or Application

I have an Ajax.Net enabled ASP.Net 2.0 web site. Hosting for both the site and the database are out of my control as is the database's schema. In testing on hardware I do control the site performs ...
16
votes
6answers
4k views

Slow first page load on asp.net site

Every now and then (always after a long period of idle-time, e.g. overnight) when I access a site built using asp.net - it takes around 15 seconds to load the page (15 seconds before I see any ...
15
votes
4answers
1k views

I just discovered why all ASP.Net websites are slow, and I am trying to work out what to do about it

I just discovered that every request in an ASP.Net web application gets a Session lock at the beginning of a request, and then releases it at the end of the request! In case the implications of this ...
14
votes
7answers
635 views

Is count(*) really expensive?

I have a page where I have 4 tabs displaying 4 different reports based off different tables. I obtain the row count of each table using a select count(*) from <table> query and display number ...
13
votes
2answers
5k views

Minify Html output of ASP.NET Application

What are the ways by which we can reduce the size of the HTML Response sent by an asp.net application? I am using Controls which are not owned by me and it produces output with white spaces. I am ...
13
votes
6answers
2k views

ASP.NET MVC URL generation performance

A little benchmark with ASP.NET MVC. Viewpage code: public string Bechmark(Func<string> url) { var s = new Stopwatch(); var n = 1000; s.Reset(); ...
12
votes
3answers
1k views

How to track IIS server performance

I have a reoccurring issue where a customer calls up and complains that the web site is too slow. Specifically, if they are inactive for a short period of time, then go back to the site, there will ...
12
votes
3answers
1k views

Something faster than HttpHandlers?

What is the fastest way to execute a method on an ASP.NET website? The scenario is pretty simple: I have a method which should be executed when a web page is hit. Nothing else is happening on the ...
12
votes
8answers
12k views

.Net: Is String.Contains() faster than String.IndexOf()?

I have a string buffer of about 2000 characters and need to check the buffer if it contains a specific string. Will do the check in a ASP.NET 2.0 webapp for every webrequest. Does anyone know if the ...
12
votes
10answers
2k views

ASP.NET - Basic checklist for putting a site into production

I'm building a static ASP.NET site (using Masterpages and a few forms) and I'm about to release it onto my production server. I know about changing <compilation debug="true"> to false, but I'm ...
10
votes
1answer
300 views

How to measure memory usage for a Live ASP.NET MVC web application?

So right off the bat, not sure if this question is better suited for another StackExchange site. I've got an ASP.NET MVC 3 web application running on Windows Server 2008 and IIS 7.5 Site runs fine ...
10
votes
5answers
537 views

Possible Solutions to Poor Serialization Performance

I recently did some performance testing and analysis of an ASP.NET application using out-of-process session state - this is necessary when using session state on a web farm so that state can be ...
10
votes
3answers
4k views

Is there a performance difference between asp.net mvc and web forms? [closed]

Possible Duplicate: ASP.NET MVC Performance I know there is a learning curve, but what about performance? It seems to me that web forms would be less performant, but I havent tried MVC yet ...
9
votes
5answers
619 views

What key performance monitors should I watch for ASP.NET application

I have a site that receives 5 million request per day. On heavy days, the pages take about 10 seconds to return. I also get out of memory exceptions. I've been reading the Improving .NET Application ...
9
votes
11answers
836 views

Performance vs Quality of Code

Do you think it's worth trading off some performance for code-quality and maintainability? I remember a post by Jeff Atwood that stated that hardware is cheap, developers are not. I think I'd like ...
8
votes
5answers
879 views

How do I prevent IIS from compiling website?

I have an ASP .NET web application which on the backend is talking to an ASMX web service. We have counted and the average wait time for the initial request is 20s. I am wondering if there is a way I ...
8
votes
3answers
228 views

should linq to sql be used for websites that have high traffic

I have read many articles about linq to sql performance. The result which i got is it is slower than normal approach(DAL or Microsoft Enterprise library). Slower for both read and write operations ...
8
votes
3answers
6k views

SQLServer vs StateServer for ASP.NET Session State Performance

I'm studying for a MS certification and one of the practice tests I'm doing has a question where the point of contention is the performance between storing the session in SQL Server as opposed to ...
8
votes
8answers
4k views

Speed up your IIS

Is there any way to improve the performance of your IIS by changing some configuration parameters? Or do you have any tips in general on how to improve the performance of a ASP.NET app? Thanks!
8
votes
12answers
790 views

.NET performance tips for enterprise web appilcations

For enterprise web apps, every little bit counts. What performance tips can you share to help programmers program more effeciently? To start it off: Use StringBuilders over strings since strings ...
8
votes
4answers
2k views

Tools and methods for live-monitoring ASP.NET web applications?

I think many developers know that uncomfortable feeling when users tell them that "The application is slow (again)." In a complex web application there can be many possible reasons for a degradation ...
8
votes
10answers
8k views

DataReader or DataSet when pulling multiple recordsets in ASP.NET

I've got an ASP.NET page that has a bunch of controls that need to be populated (e.g. dropdown lists). I'd like to make a single trip to the db and bring back multiple recordsets instead of making a ...
8
votes
5answers
1k views

Is anyone running a production ASP.NET site on top of Mono?

I'm trying to do an informal feasibility study for work on if Mono/Apache/Linux is realistically 'ready' and in any way comparable to a more traditional .NET/IIS/Windows stack. Any comparison of ...
7
votes
2answers
48 views

Load Time on asp.net page cannot be accounted for

I am trying to find where my load time is being consumed. I have added tracing to almost everything I can think of and there is a missing 200ms ( which is more than 50% of the total load) How can I ...
7
votes
1answer
320 views

ASP.NET Request.Form Performance

I used a HttpHandler to implement a light-weight web service targeted for high performance. It requires a POST with content-type application/x-www-form-urlencoded. The web service does many tasks ...
7
votes
4answers
536 views

What's a typical average number of ASP.NET sessions per CPU or per memory?

(EDIT: rewritten question to make it clearer, meaning hasn't changed) You can create an application and measure its usage. But what I would like to know, if you decide up-front about an ASP.NET ...
7
votes
4answers
437 views

“Must Know” IIS features for .NET Architect/Lead [closed]

What all IIS features in regards to maintain application/optimization should an .NET (ASP.NET) architect or team lead should be aware of? LIST of features HTTP Compression. This option ...
7
votes
1answer
346 views

What is the real benefit of release mode for ASP.Net

I know there are several questions asking the same question "Why should I use release mode". The problem I have with the answers is that they simply state, quite strongly, that you should always use ...
7
votes
7answers
531 views

Improve the performance of an ASP.NET application

How to improve the performance of an ASP.NET application? Which are are the fields I should take care? The application includes DB connections and Image Parsing etc.
7
votes
3answers
1k views

Best implementation for an RSS feed in C# (ASP.net)

The thing I have a web app (asp.net) which needs to have a feed. So I used the System.ServiceModel.Syndication namespace to create the function that creates the 'news'. The thing is it executes ...
7
votes
9answers
5k views

Reloading configuration without restarting application using ConfigurationManager.RefreshSection

Has anyone got this working in a web application? No matter what I do it seems that my appSettings section (redirected from web.config using appSettings file=".\Site\site.config") does not get ...
6
votes
2answers
54 views

ASP.NET Session - big object vs many small objects

I have a scenario to optimise how my web app is storing data in the session and retrieving it. I should point out that I'm using SQL Server as my session store. My scenario is I need to store a list ...
6
votes
2answers
118 views

Locking and high CPU when switching IIS from Classic to Integrated mode

In IIS 6 we used to do Url Rewriting with two third party components: Helicon (for handling extensionless url's) and UrlRewriting.net. Some time ago we migrated to IIS 7 - Classic Mode, still using ...
6
votes
1answer
133 views

When is Response.IsClientConnected slow?

I have a long running ASP response (actually an MVC action) that I want to cancel if the user has navigated away. I think this should be fairly simple: if(!this.Response.IsClientConnected) { ...
6
votes
4answers
167 views

How do I achieve a better performance of my website

Hy there! I'm running IIS7 on a Windows 2008 server. On peek times we have following behaviour: CPU load is near idle Requests get queued (monitored with Resource Monitor) Exeuction time gets over ...
6
votes
6answers
179 views

ASP.NET file uploads stop all other requests on web site

We have a web portal that has a page that allows users to upload up to 5 files at a time. The page just has 5 standard ASP.NET FileUpload controls. The problem is, we're seeing that when a user is ...
6
votes
5answers
428 views

What is consuming over 65% of time in an ASP.NET application?

I have an .Net Framework 4.0, ASP.NET, ASP.NET MVC 3 web application hosted on a Windows 7 / IIS 7.5. IIS logging is enabled on this machine and set to log in W3C mode. The application is compiled by ...
6
votes
1answer
169 views

Why does the browser wait to end loading the page?

Can anyone explain me why those spaces (marked with ?) are there? They are delaying the page loading. I thought it could be the page/script parsing time, but ~350ms looks too much for a simple page; ...
6
votes
4answers
318 views

Checklist for ASP.NET / Database performance

Recently our customers started to complain about poor performance on one of our servers. This contains multiple large CMS implementations and alot small websites using Sitefinity. Our Hosting team is ...
6
votes
4answers
247 views

How to find performance hot spots in .Net application?

I have an existing ASP.NET 2.0 web service serves several WinForms clients. In our application, We belive we have performance problem in several levels. Sending toomuch data in syncrounous request ...
6
votes
5answers
537 views

C# code runs quick on IIS, but slow on Mono - how to improve it?

I have an ASP.NET application that is working well on my Windows development machine. The server is Linux running Mono though, and once uploaded the same code is running 4 or 5 times slower there than ...
6
votes
1answer
419 views

Help/Tips increasing performance on my ASP.NET MVC 2 Website

Hey guys, I am new to Stack Overflow. I have found some great answers on here recently and it's a great community. I have a tough question, and please excuse the long post. I run a social community ...
6
votes
4answers
118 views

Will commenting-out unused code give my page a performance boost in any way, shape, or form?

Okay so my situation at work is that I've written about 200 or so lines of additional functionality into an aspx page's code-behind that is currently not to be implemented. It is in a subroutine that ...
6
votes
6answers
369 views

Is it possible to optimize ASP.NET WebForms to perform as fast as ASP.NET MVC?

There's so much hype about ASP.NET MVC these days, but the truth is that ASP.NET webforms is not going anywhere for some time. Is there any way for current developers to optimize ASP.NET webforms to ...
6
votes
2answers
3k views

Experience using gcServer=“true” to set garbage collector for .NET

Someone has used a configuration enabling the garbage collector optimized for multi-processor machines using Aspnet.config with : gcServer enabled="true" gcConcurrent enabled="true" There was ...
5
votes
3answers
96 views

How can I find the average number of concurrent users for IIS to simulate during a load/performance test?

I'm using JMeter for load testing. I'm going through and exercise of finding the max number of concurrent threads (users) that our webserver can handle by simply increasing the # of threads in my ...
5
votes
1answer
715 views

System.Web.HttpRequest.FillInFormCollection() and System.Web.HttpRequest.GetEntireRawContent() very slow

I've been following performance of my website and out of all slow-executing code (>1s), more than 90% is because of System.Web.HttpRequest.GetEntireRawContent() (called by ...
5
votes
2answers
197 views

Design considerations for supporting around 400+ concurrent users in web application

I am at the start of a mid sized asp.net c# project and with an application performance requirement to be able to support around 400+ concurrent users. What are the things I need to keep in mind ...

1 2 3 4 5 14