Posted by: Kaushal on: July 30, 2008
A CSS Filter is a coding technique used to hide or show CSS markup depending on the browser’s brand and/or version number. Browsers have different interpretations of CSS behavior and different levels of support for the W3C standards. Web developers will implement CSS Filters when attempting to achieve consistent layout appearance in browsers that do [...]
Posted by: Kaushal on: July 16, 2008
I have seen posts today asking for Asynchronous Request to Server which will Query the Database for certain information.
Here, I am giving one example, which will send an Asynchronous Request to server for Checking the availablity of the UserName entered by the user against database.
Below is my WebPage:
<div>
<asp:Label ID=”Label1″ runat=”server” Text=”UserName:”></asp:Label>
<asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox>
<asp:Button ID=”Button1″ runat=”server” [...]
Posted by: Kaushal on: July 16, 2008
In one of my previous blog post, I Described about Mutually Exclusive CheckBox inside GridView.
In this example, there is a “Select All” checkbox in header to select/deselect all the checkboxes inside GridView. MoreOver, if user select all the checkboxes manually one by one, then header checkbox should automatically be selected and vice versa.
Here is the [...]
Posted by: Kaushal on: July 5, 2008
I was having a development requirement in which i have to implement CheckBoxes inside GridView.
Scenario is like, There is one TemplateColumn in GridView which is used to Select any Row within GridView. So, There will be CheckBox inside ItemTemplate of that TemplateColumn.
User would be able to select only one CheckBox (Mutually Exclusive) in that Column. [...]
Posted by: Kaushal on: July 5, 2008
I was having few hours of work-a-round when I was trying to Set-up/Deploy the DotNetNuke Environment at my local pc.
I restore the DB Backup of DNN, copied the source at my local pc drive and configured the Virtual Directory for the application.
Read More…
Posted by: Kaushal on: July 2, 2008
I was delighted to find out that I have been awarded the 2008 Microsoft® MVP Award.
This is the email I received:
Subject: [MVP] Congratulations! You have received the Microsoft MVP Award
Read More…
Posted by: Kaushal on: July 1, 2008
I came across one good article on Dynamic SQL (SQL Server) by Erland Sommarskog, SQL Server MVP.
The Article describes Intro to Dynamic SQL, SQL Injection, Dynamic Queries and SPs, Good Coding Practice and Tips for Dynamic SQL, and the common cases where not to use Dynamic SQL:
In this article I will discuss the use of [...]