Sign in
|
Join
|
Help
Home
Blogs
WordPress Blogs
Media
All Tags
»
ASP.NET
»
performance
(
RSS
)
MVP WordPress Blogs
Loading...
Tags
.NET
Advisories / Bulletins
ASP.NET
C#
Community
ConfigMgr 2007
Digital Media
Events
Exchange
General
General Security News
Media Center
Microsoft
News
Rants
Security
Sharepoint
SPPS03_Tips
SQL Server
System Center
Tools
VB
Vista
Windows 7
Windows Server
Browse Blog Posts by Tags
Showing related tags and posts for the
Blogs
application. See
all tags in the site
.NET
ADO.NET
ajax
AppPool
architecture
ASMX
asp.net ajax
asp.net MVC
Capacitacion
compress
EF
IIS
Issue
javascript
jpeg
KB
optimize
pageflakes
png
powershell
production
Rendimiento
SQL Server
Testing
VS Team Systems
WebService
Calling Stored procedure from EF takes long time and times out!
Hi Folks, I was going through an interesting performance issue when calling a stored procedure from my web application more than one time and the WCF was timing out because of the stored procedure execution takes long time to execute. At the first, I...
Posted to
Moustafa Arafa Blog
by on Wed, Mar 20 2013
Filed under:
Filed under:
asp.net
,
EF
,
Performance
,
SQL Server
7 tips for for loading Javascript rich Web 2.0-like sites significantly faster
Introduction When you create rich Ajax application, you use external JavaScript frameworks and you have your own homemade code that drives your application. The problem with well known JavaScript framework is, they offer rich set of features which are not always necessary in its entirety. You may end...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Fri, Sep 25 2009
Filed under:
Filed under:
performance
,
asp.net
,
javascript
,
ajax
,
optimize
Optimize ASP.NET Membership Stored Procedures for greater speed and scalability
Last year at Pageflakes , when we were getting millions of hits per day, we were having query timeout due to lock timeout and Transaction Deadlock errors. These locks were produced from aspnet_Users and aspnet_Membership tables. Since both of these tables are very high read (almost every request causes...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Fri, Mar 13 2009
Filed under:
Filed under:
sql server
,
performance
,
asp.net
,
.net
99.99% available ASP.NET and SQL Server SaaS Production Architecture
You have a hot ASP.NET+SQL Server product, growing at thousand users per day and you have hit the limit of your own garage hosting capability. Now that you have enough VC money in your pocket, you are planning to go out and host on some real hosting facility, maybe a colocation or managed hosting. So...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Wed, Dec 10 2008
Filed under:
Filed under:
sql server
,
performance
,
asp.net
,
pageflakes
,
production
,
architecture
Best practices for creating websites in IIS 6.0
Every time I create an IIS website, I do some steps, which I consider as best practice for creating any IIS website for better performance, maintainability, and scalability. Here' re the things I do: Create a separate application pool for each web application I always create separate app pool for...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Sat, Oct 4 2008
Filed under:
Filed under:
performance
,
asp.net
,
production
,
IIS
HTTP handler to combine multiple files, cache and deliver compressed output for faster page load
It's a good practice to use many small Javascript and CSS files instead of one large Javascript/CSS file for better code maintainability, but bad in terms of website performance. Although you should write your Javascript code in small files and break large CSS files into small chunks but when browser...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Thu, Aug 28 2008
Filed under:
Filed under:
performance
,
asp.net
Contention, poor performance, and deadlocks when you make Web service requests from ASP.NET applications
If you are (un) lucky like me then you may run into gettin this error on IIS server asp.net web apps/asmx web services. Its a known issue and has a resolution documented in kb article @ http://support.microsoft.com/kb/821268 . The resolution revolves around fine tuning machine.config parameters. To improve...
Posted to
Hammad : IDotNetWizard
by
hammad
on Tue, Aug 19 2008
Filed under:
Filed under:
Asp.net
,
Performance
,
AppPool
,
ASMX
,
KB
,
IIS
,
WebService
,
Issue
Loading static content in ASP.NET pages from different domain for faster parallel download
Generally we put static content (images, css, js) of our website inside the same web project. Thus they get downloaded from the same domain like www.dropthings.com . There are three problems in this approach: They occupy connections on the same domain www.dropthings.com and thus other important calls...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Fri, Aug 1 2008
Filed under:
Filed under:
performance
,
asp.net
Video: Load Test en Visual Studio 2008
Como preparar, correr y analizar un Web Test utilizando Visual Studio 2008 Team Systems. Duración: 12:59 Extraído del Lanzamiento de Visual Studio 2008
Posted to
Carlos Walzer
by
cwalzer
on Thu, Jul 31 2008
Filed under:
Filed under:
ASP.NET
,
Performance
,
Testing
,
VS Team Systems
,
Rendimiento
Deploy ASP.NET MVC on IIS 6, solve 404, compression and performance problems
There are several problems with ASP.NET MVC application when deployed on IIS 6.0: Extensionless URLs give 404 unless some URL Rewrite module is used or wildcard mapping is enabled IIS 6.0 built-in compression does not work for dynamic requests. As a result, ASP.NET pages are served uncompressed resulting...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Mon, Jun 30 2008
Filed under:
Filed under:
performance
,
asp.net
,
production
,
.net
,
asp.net MVC
ensure - Ensure relevant Javascript and HTML are loaded before using them
ensure allows you to load Javascript, HTML and CSS on-demand, whenever they are needed. It saves you from writing a gigantic Javascript framework up front so that you can ensure all functions are available whenever they are needed. It also saves you from delivering all possible html on your default page...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Mon, Jun 9 2008
Filed under:
Filed under:
performance
,
asp.net
,
javascript
,
ajax
Fast ASP.NET web page loading by downloading multiple javascripts in batch
A web page can load a lot faster and feel faster if the javascripts on the page can be loaded after the visible content has been loaded and multiple javascripts can be batched into one download. Browsers download one external script at a time and sometimes pause rendering while a script is being downloaded...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Fri, May 9 2008
Filed under:
Filed under:
performance
,
asp.net
,
javascript
,
ajax
Fast, Streaming AJAX proxy - continuously download from cross domain
Due to browser's prohibition on cross domain XMLHTTP call, all AJAX websites must have server side proxy to fetch content from external domain like Flickr or Digg. From client side javascript code, an XMLHTTP call goes to the server side proxy hosted on the same domain and then the proxy downloads...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Mon, Apr 14 2008
Filed under:
Filed under:
performance
,
asp.net ajax
,
asp.net
,
pageflakes
,
ajax
,
.net
Reduce website download time by heavily compressing PNG and JPEG
PNG and JPEG are two most popular formats for web graphics. JPEG is used for photographs, screenshots and backgrounds where PNG is used for all other graphics need including cliparts, buttons, headers, footers, borders and so on. As a result, these two types of graphics file usually take up 80% of the...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Mon, Apr 7 2008
Filed under:
Filed under:
performance
,
asp.net
,
production
,
powershell
,
compress
,
optimize
,
jpeg
,
png
Fast page loading by moving ASP.NET AJAX scripts after visible content
ASP.NET ScriptManager control has a property LoadScriptsBeforeUI , when set to false , should load all AJAX framework scripts after the content of the page. But it does not effectively push down all scripts after the content. Some framework scripts, extender scripts and other scripts registered by Ajax...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Sun, Apr 6 2008
Filed under:
Filed under:
performance
,
asp.net
,
javascript
,
ajax
10 ASP.NET Performance and Scalability Secrets
ASP.NET 2.0 has many secrets, when revealed, can give you big performance and scalability boost. For instance, there are secret bottlenecks in Membership and Profile provider which can be solved easily to make authentication and authorization faster. Furthermore, ASP.NET Http pipeline can be tweaked...
Posted to
Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5
by
omar
on Wed, Jan 30 2008
Filed under:
Filed under:
performance
,
asp.net
,
production
,
ajax
,
.net
MSDN Radio en Vivo: Discusión: Técnicas y Herramientas para Mejorar el Rendimiento de Aplicaciones y Bases de Datos
Durante el último mes los expertos de Solid Quality Mentors han estado discutiendo técnicas para medir y mejorar el rendimiento de las aplicaciones. Durante este show de MSDN Radio únase a una discusión en vivo sobre cómo optimizar sus aplicaciones, herramientas para...
Posted to
Carlos Walzer
by
cwalzer
on Fri, Oct 26 2007
Filed under:
Filed under:
.NET
,
ASP.NET
,
SQL Server
,
Performance
,
ADO.NET
Mes de Mejoras de Desempeño en MSDN por Solid Quality Mentors
En el transcurso de este mes los mentores de Solid Quality Mentors hemos difundido nuestros conocimientos en MSDN Latino América, acerca de las técnicas disponibles para Mejora de Desempeño de aplicaciones Microsoft. Aquí podrás encontrar la información del wecast que dí, el mismo está en línea para...
Posted to
Carlos Walzer
by
cwalzer
on Thu, Oct 18 2007
Filed under:
Filed under:
.NET
,
Capacitacion
,
ASP.NET
,
Performance
,
Testing
,
VS Team Systems
,
ADO.NET
Webcast: Herramientas para mejorar el desempeño de las aplicaciones .NET Framework
Los invito a escuchar este webcast que daré el Viernes 5 de Octubre 2007. Daremos una recorrida por las herramientas que propone Microsoft para Detectar y Diagnosticar problemas de desempeño y mal uso de la memoria de aplicaciones .NET: Visual Studio 2005 Team System para hacer pruebas...
Posted to
Carlos Walzer
by
cwalzer
on Thu, Sep 20 2007
Filed under:
Filed under:
Capacitacion
,
ASP.NET
,
Performance
,
Testing
,
VS Team Systems
El debugging es solo para eso: Depuración
Para confirmar lo que mi amigo Patrick MacKay explica en estos 3 artículos: ¿Por qué debo definir "debug=false" en web.config?, Parte I ¿Por qué debo definir "debug=false" en web.config?, Parte II ¿Por qué no debo compilar en modo debug...
Posted to
Carlos Walzer
by
cwalzer
on Tue, Sep 11 2007
Filed under:
Filed under:
ASP.NET
,
Performance
Page 1 of 2 (21 items) 1
2
Next >