parthasarker

Stories kicked by parthasarker

Open Source ASP.NET Maintenance Mode Module - AM3(raihaniqbal.net)

submitted by PrinceOfDhakaPrinceOfDhaka(390) 2 years, 11 months ago

Web developers at times need to put their web applications in an offline mode so as to prevent visitors from accessing the site while they are updating it. The classic way to do this would be to upload an app_offline.html file to the root of the web application. The limitation of this technique is that even the developer cannot visit the site! A developer might need to ensure if everything is working fine and at the same time prevent other users from accessing the web site. read more...

add a comment |category: |Views: 309

tags: another

Perform batch inserts in sql server 2005 using XML(raihaniqbal.org)

submitted by PrinceOfDhakaPrinceOfDhaka(390) 3 years, 1 month ago

My current project requires me to download huge amounts of data from a remote server in the form of XML and save them to our local database. Lets see if we can do this using just one simple T-SQL stored procedure. read more...

add a comment |category: |Views: 213

tags: another

Aggregator Provider Pattern: White Paper and Samples(code.msdn.microsoft.com)

submitted by joycscjoycsc(1597) 3 years, 1 month ago

Provider Aggregator Pattern is an extension of Provider Pattern, which enables us to create and utilize multiple instance of the class having the same provider interface. In this pattern, there is an Aggregator class which implements the provider interface and contains a collection of instances of classes having the same provider interface. read more...

add a comment |category: |Views: 242

tags: another

Email Reporter: VSTS 2008 Load Test Plug-in(code.msdn.microsoft.com)

submitted by joycscjoycsc(1597) 3 years, 2 months ago

Microsoft’s Visual Studio Team System Test Edition provides a powerful platform to perform high volume load testing. It also provides high end flexibilities to write and utilize external plug-in for extended functionalities. "Email Reporter: VSTS 2008 Load Test Plug-in" enables users to send the load test reports to one or more pre-configured email addresses automatically, once a VSTS Load Test is completed. This open-source load test plug-in also provides supports for customization by which you can customize the reported performance data. read more...

1 comment |category: |Views: 80

tags: another

Generating Tree-like UI structures(raihaniqbal.org)

submitted by PrinceOfDhakaPrinceOfDhaka(390) 3 years, 3 months ago

This article discusses ways to generate tree-like structures using C# Generics and how to improve the efficiency of the algorithm. read more...

add a comment |category: |Views: 26

tags: another

Understanding Safe Database Synchronization(weblogs.asp.net)

submitted by joycscjoycsc(1597) 3 years, 3 months ago

Data or content synchronization is one of the classic problems in software world. It becomes very trivial point while working on software production, where production data and schema needs to be synchronized with live data and schema. Having some basic conceptual complexity, developers often get afraid to use any automated tool considering the risk factors to lose of data or content. Having a clear specific idea on content synchronization will greatly help to reduce lots of confusion and fear. read more...

2 comments |category: |Views: 303

tags: another