When designing a website or making website layout, we want some elements to align on the right or on the left of the web page. Usually, we use CSS float property (“float:left/right”)to align the elements. The left value of float property aligns an element to the left and right aligns an HTML element to the right. You might have used ... Read More »
An attempt was made to load a program with an incorrect format sqlite
I was loading an ASP.NET small application on IIS7 which used SQLite as back-end and I was getting the error “Could not load file or assembly ‘System.Data.SQLite, Version=1.0.61.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139′ or one of its dependencies. An attempt was made to load a program with an incorrect format.”. Read More »
Total Hits – WordPress Plugins (Very Light)
If you are running a blog then, having a total hits or visitors counter is a good idea. Today, I wanted to add a “Blog Statistics” plugin but didn’t find one which fills my requirement. Read More »
Write Text Over Image or Picture with PHP
Adding custom text over image or pictures is a good way to declare copyrights or give a simple title information to that graphical image or picture without editing the image itself. PHP made it very easy to add custom text over image or picture by using some basic functions from PHP GD. Read More »
Get Browser and Operating System Information with PHP
Long time ago I needed to get browser information with PHP and I wrote a class which uses preg_match_all function with regular expressions to get information from browser.This class will return information from browser in an array format included browser name, browser version and also operating name. It helped me so I shared to help others. Read More »
WordPress – Numbered Page Navigation Without Any Plugins
Numbered page navigation is not available in WordPress features. WordPress, instead uses (Previuse Page/Post – Next Page/Post) navigation style. however; there number of plugins for this solution and some are listed below. Read More »
Smooth Scroll To The Top of The Page in jQuery
When content of a web page exceeds and visitors scroll down the web page, then having a button to smooth scroll to the top of the page is a good idea. jQuery scroll function made it very easy to create a such a button just by writing a few lines of code. jQuery scroll function is checking if the document is scrolled and ... Read More »
Removing Duplicate Records From DataTable in C#.NET
If a database table contain duplicate records the it is easy to select unique records by using DISTINCT function. but when a .Net DataTable contain duplicate records then, there no built-in function to remove or select unique records from a DataTable. Read More »
jQuery is not Working in UpdatePanels in ASP.NET
ASP.NET UpdatePanel control allows to build rich, client-centric Web applications. UpdatePanel controls refresh only selected part of the page instead of refreshing the whole page with a post back. In another words this is performing a partial-page update. A Web page that contains a ScriptManager control and one or more UpdatePanel controls can automatically participate in partial-page updates, without custom ... Read More »
CASE Expression (T-SQL) Explanation with Examples in SQL SERVER
This article explains, how to use Simple CASE Expression and Searched CASE Epxression in SQL Server (T-SQL) or as a formula of a particular column. Read More »
Recent Solutions Programming, Website & Database Development