Browse by Tags

All Tags » asp.net performance (RSS)
Sorry, but there are no more tags available to filter with.

Prevent Denial of Service (DOS) attacks in your web application

Web services are the most attractive target for hackers because even a pre-school hacker can bring down a server by repeatedly calling a web service which does expensive work. Ajax Start Pages like Pageflakes are the best target for such DOS attack because...
Posted by omar | 31 comment(s)
Filed under:

Things you must do for ASP.NET 2.0 Membership Provider before going live

Some tweakings you should do on your web.config if you are using ASP.NET 2.0 Membership Provider before you go live on your production server: Add "applicationname" attribute in Profile Provider. IF you do not add a specific name here, Profile...
Posted by omar | 3 comment(s)
Filed under:

Client side Page Fragment Output cache, reduce page download time significantly

When you have a page full of lots of HTML, it will be best if the whole page can be cached on the browser. You can do this using HTTP Response caching header either by injecting them manually or by using @OutputCache tag directive on ASPX pages. <...
Posted by omar | with no comments
Filed under: