Custom error tracking library in asp.net using XML & C#
Being an asp.net developers we develop a web project and get it completed in a months of time as there are many organizations which works on very tight bound timeline...
List of technology which can be adopted into development
Business Intelligence Application Development Companies are investing millions of dollars in ERP solutions or have invested till date to improve the way they conduct their business. While ERP provides significant...
Using Smarty with PHP: A PHP Template Engine
Most of the time in site development, first the designer makes the interface and breaks into HTML for developer and then developer starts by creating simple scripts to add dynamic...
10 PHP Open source Ecommerce Framework
Electronic commerce, commonly known as e-commerce or eCommerce, consists of the buying and selling of products or services over electronic systems such as the Internet and other computer networks. The...
Setting up HTML signature in Outlook 2007
Step 1: Go to windows explorer and navigate to the below given path: C:\Documents and Settings\Administrator\Application Data\Microsoft\Signatures Step 2: Place signature files in the above mentioned folder. And make sure...
Writing recursive queries in SQL server 2005 using Common table expression (CTE)
with cte (empID,manID,depth,hierarchy) as ( select e.employeeID,e.managerID ,1 , cast(e.employeeID as nvarchar(max))as hierarchy from humanresources.Employee as e where managerID is null union all select emp.employeeID,emp.managerID ,depth+1 , hierarchy + '/'...
Storing and Retrieving image in SQL server 2005 & asp.net using large value data type & HTTP handler
ASPX page : <form id="form1" runat="server"> <div style="padding: 200px;"> <asp:Image ID="imagebox" runat="server" ImageUrl="~/sql-image-store/image-handler.ashx" /> </div> </form> Handler code: image-handler.ashx <%@ WebHandler Language="C#" Class="image_handler" %> using System; using System.Web; using System.IO;...
Import Excel data into SQL Server 2005 table using distributed queries
/*SQL server configuration settings */ exec sp_configure sp_configure 'show advanced options', 1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries', 1 reconfigure /*Excel import into sql table using distributed query*/ select...
Developing custom AD rotator control with multiple Image Mapping using C#.net & XML
We are all familiar with AD rotator control asp.net provides to show rotating/random ads on every page refresh. But I found a limitation of this control while I needed to...