oazabir

Stories submitted by oazabir

Loading static content in ASP.NET pages from different domain for fast(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 9 months ago

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. As browser can only open two concurrent connections, all of these download only two at once. If you move the static content to a separate domain, browser can download more content in parallel and thus load the page faster. This HttpFilter parses the page output and automatically moves all static content links to a different domain as specified. read more...

1 comment |category: |Views: 34

tags: another

Open Source ASP.NET 3.5 AJAX Portal - new and improved(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 10 months ago

A new release of Dropthings, open source ASP.NET 3.5 AJAX portal. Features many performance and scalability techniques and a new design. Showcases: - 10 ASP.NET Performance and Scalability Secrets. - Fast ASP.NET page rendering by deferred script loading. - Load large amount of Javascripts in batch and thus load AJAX sites a lot faster. - Fast Streaming AJAX proxy that solves double downloading problems and continuously streams content from external domain. - Making best use of cache for high performance website. - On-demand UI loading on AJAX websites. read more...

add a comment |category: |Views: 589

tags: another

Deploy ASP.NET MVC on IIS 6, solve 404, compression and performance pr(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 10 months ago

Load dynamic pages 5 to 20 times faster by compressing response on the fly. Serve static files (js, html, css) 10 to 100 times faster by compressing and caching their content. Improve repeated site load time by maximizing caching on browser. read more...

add a comment |category: |Views: 140

tags: another

Ensure - load javascript and html snippet on-demand(codeproject.com)

submitted by oazabiroazabir(1805) 3 years, 11 months ago

A tiny javascript library that provides a handy function "ensure" which allows you to load Javascript, HTML, CSS on-demand and then execute your code. Ensure ensures that relevent Javascript and HTML snippets are already in the browser DOM before executing your code that uses them. read more...

add a comment |category: |Views: 34

tags: another

UFRAME: goodness of UpdatePanel and IFRAME combined(codeproject.com)

submitted by oazabiroazabir(1805) 4 years ago

UFrame simulates the behavior of IFRAME on a DIV. Any page can be loaded inside a DIV and hyperlink navigation and form posts happen within the DIV. As a result, a regular page can start providing AJAX features without ever writing any AJAX code. ASP.NET MVC websites can now use UFrame instead of UpdatePanel. read more...

2 comments |category: |Views: 349

tags: another

Fast web page loading by defering and combining multiple javascripts (codeproject.com)

submitted by oazabiroazabir(1805) 4 years ago

A web page can load a lot faster and feel faster if the Javascripts files referenced on the page can be loaded after the visible content has been loaded and multiple Javascripts files can be batched into one download. This handy technique combines external javascripts references into one script tag and serves multiple javascripts using a Http Handler. read more...

1 comment |category: |Views: 15

tags: another

Fast page loading by moving ASP.NET AJAX scripts after visible content(weblogs.asp.net)

submitted by oazabiroazabir(1805) 4 years, 1 month ago

Learn how to move all scripts on a page at the end of the body content so that page content is displayed much faster and the scripts download behind the scene without blocking browser rendering. Get a fast loading website with this simple ASP.NET Response Filter. read more...

add a comment |category: |Views: 26

tags: another

Reduce website download time by heavily compressing PNG and JPEG(msmvps.com)

submitted by oazabiroazabir(1805) 4 years, 1 month ago

Use some advance compression tools like OptiPNG, AdvPNG and jpegtran to compress PNG and JPEG on your site and save 30% to 50% download time. See some handy powershell scripts than can run these tools on all your png and jpeg files and compress them all at once. read more...

add a comment |category: |Views: 8

tags: another

Reduce website download time by heavily compressing PNG and JPEG(weblogs.asp.net)

submitted by oazabiroazabir(1805) 4 years, 1 month ago

Use some advance compression tools like OptiPNG, AdvPNG and jpegtran to compress PNG and JPEG on your site and save 30% to 50% download time. See some handy powershell scripts than can run these tools on all your png and jpeg files and compress them all at once. read more...

add a comment |category: |Views: 1

tags: another

Book: Building a Web 2.0 Portal with ASP.NET 3.5(oreilly.com)

submitted by oazabiroazabir(1805) 4 years, 4 months ago

If you think you're well versed in ASP.NET, think again. This exceptional guide gives you a master class in site building with this framework. You learn how to develop rock-solid web portal applications similar to My Yahoo!, iGoogle, and Pageflakes using ASP.NET AJAX, Windows Workflow Foundation, LINQ, and .NET 3.5, along with ASP.NET 3.5 -- sites that can withstand millions of hits every day while surviving scalability and security pressures. read more...

add a comment |category: |Views: 66

tags: another

AJAX Multicolumn Drag & Drop (codeproject.com)

submitted by oazabiroazabir(1805) 4 years, 4 months ago

The Extender allows reordering of content on the same column and drag & drop content between columns. It also supports client side notification so that you can call web service and store the position of the content behind the scene without producing (async) postback. read more...

add a comment |category: |Views: 63

tags: another

Serve extensionless URL without using ISAPI or wildcard mapping(codeproject.com)

submitted by oazabiroazabir(1805) 4 years, 4 months ago

Serve extensionless URL from IIS without using custom ISAPI handler or IIS 6.0 wildcard mapping read more...

add a comment |category: |Views: 31

tags: another