Tagged Questions
65
votes
16answers
40k 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 ...
59
votes
12answers
15k 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 ...
15
votes
6answers
3k 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 ...
14
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 begging of a request, and then releases it at the end of the request!!! I mean, WTF Microsoft!
In case ...
14
votes
7answers
624 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
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 ...
11
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 ...
10
votes
1answer
225 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
519 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
610 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
830 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
823 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
225 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
8answers
3k 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
786 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
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
1answer
299 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
521 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
423 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
340 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
524 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
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 ...
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
6answers
170 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
1answer
166 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
222 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
506 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
398 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
117 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
360 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
3answers
5k 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 ...
6
votes
2answers
2k 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
2answers
166 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 ...
5
votes
2answers
138 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 ...
5
votes
4answers
111 views
ASP.NET Pages not removed from memory
I've been having really bad memory problems with an ASP.NET Application. It seems as if every time the page loads, the old previous instance of the page is not removed from memory. If you press F5 ten ...
5
votes
5answers
395 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 ...
5
votes
4answers
285 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 ...
5
votes
4answers
520 views
ASP.NET treeview performance issue with IE7,8
I am using treeview in my asp.net application which have 2000 nodes in it. The treeview takes 40 sec to load on IE7,8 while same page takes 1/10th time on Firefox and chrome. Is there any solution to ...
5
votes
5answers
668 views
LINQ: adding where clause only when a value is not null
I know a typical way is like this:
IQueryable query = from staff in dataContext.Staffs;
if(name1 != null)
{
query = from staff in query where (staff.name == name1);
}
However, from a program ...
5
votes
3answers
1k views
hidden field vs viewstate
Q:
What is the difference when using ::
Hidden field vs View state??
when to use each one ??
which one more secure?? and which is better than in performance?
what are the alternatives?
5
votes
2answers
293 views
How much time would be good to set in expire header for a website?
"Web pages are becoming increasingly
complex with more scripts, style
sheets, images, and Flash on them. A
first-time visit to a page may require
several HTTP requests to load all the
...
5
votes
3answers
110 views
What tools does your company use to manage application performance of asp.net applications?
I am not talking about application profilers or debuggers but more specific to managing the applications in production environment. So essentially monitor, identify bottlenecks, deploy fixes.