cavemansblog

Stories submitted by cavemansblog

Why is my web application slow(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 2 years, 1 month ago

Web application slowness in different environments in a software factory-line is something that all we must have come-across at some point or the other. Here is my perspective on “where to begin” to address this issue in a general sense for a Microsoft centric web application. read more...

add a comment |category: |Views: 7

tags: another

Factoring the Web.Config(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 2 years, 11 months ago

Usually as the application size grows, so does the number of settings and the size of the web.config file. The settings in config file become so many that it will be pretty tough to manage them and also hard to read. There is one less known optional string attribute called "ConfigSource" that specifies the name of the include file in which the associated configuration section is defined, if such a file exists. read more...

add a comment |category: |Views: 12

tags: another

SQL Server: How to add an identity column to a table with data?(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 2 years, 11 months ago

This article demonstrates a step-by step procedure about how an identity column an be added to a table that has data. There are two ways of adding an identity column to a table with existing data: read more...

add a comment |category: |Views: 46

tags: another

Commerce Server 2007 - Extending the PurchaseOrder(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 3 years ago

A purchase order can be stored in Commerce Server 2007 in the purchaseorders table, which comes with a limited default storage columns. What if you want to add new columns to this table that would be used to store additional order information? This can be accomplished by extending the PO table. read more...

add a comment |category: |Views: 31

tags: another

Developer handkit for ASP.Net Developers(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 3 years ago

However skilled you are as a technician, without the appropriate tools you would still be a dud. Just like a craftsman knows his/her tools, a software professional also has to know the tools that are apt for the job. read more...

add a comment |category: |Views: 12

tags: another

Version Tolerant Serialization(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 3 years ago

We had a situation where the datatypes of a few properties in a extended commerce server 2007 class had to be changed. This class is serializable and a change to the datatypes would break compatibility with the data from the past. The data from the past has to be supported by the application for a period of about 3 months. read more...

add a comment |category: |Views: 34

tags: another

Installing Dotnet Windows Services, the easiest way(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 3 years ago

Using the InstallUtil.exe has been my primary mechanism of installing a windows service. I will demonstrate the easiest way of installing/uninstalling a windows service by just double clicking on the service executable. read more...

add a comment |category: |Views: 21

tags: another