Monday, July 27, 2009

How to delete multiple rows in a GridView using Asp.net

You knew that GridView allow us to delete a single row at a time. Here i would like to show you "How we can remove multiple GridView rows like Gmail Deletion". First of all i assume that you can Bind Sql server data into a GridView. So to make easier this article i will show only the delete operation. Plus i will discuss on deletion problem of master child data later on this article.To do that

Sunday, July 26, 2009

Free Michael Jackson Desktop Wallpapers

Always & All ways i salute Michael Joseph Jackson because he had an unquestionable impact upon the soul and rock scene over the previous four decades. There were no doubt on it. Really we are socked but its reality. I have searched Michael Jackson Wallpaper & i found a lot of quality, high resolution desktop wallpaper in free. Here i would like to share with you Michael Jackson's Wallpaper so

Monday, July 20, 2009

Download free online game named bowman2

Want to download free games? Here i will introduce a free online game to play. You will find a download link at the bottom of the post. First i want to tell you something on this GAME. Bowman2 is a free game. You can pass your time by playing it. But you need a flash player. If you don't have this no problem first download the game & then unzip & then open the file using IE. IE will guide you if

Friday, July 17, 2009

Add/Modify/Resize/Change/Delete/Drop/Rename MS SQL Server Table Column using T-SQL

As a software developer or Sql Server Administrator most often we need to change a column datatype or length or rename even delete or drop. So Add/Modify/Resize/Change/Delete/Drop/Rename operations is a very common task in our daily lives. Lets start an example: Let you start inserting data into a table but getting the ERROR: String or binary data would be truncated.The reason is you are trying

Javascript Displaying/Formatting Current Date and Time in Month Name & AM/PM Format

Javascript provides us the ability to format and print Date and Time of visitor local computer for our application level UI. A lot of builtin Javascript Date and Time function will help us to do this. Since Javascript won't provide us the builtin format function so that we have to write custom function to meet our client requirement. Here i will fisrt show that how we can print or display current

Thursday, July 16, 2009

Cristiano Ronaldo Wallpaper - CR7

Cristiano Ronaldo Wallpaper - CR7 Serbia Soccer Euro 2008 Portugal Cristiano Ronaldo of Portugal, left, duels for the ball with Nemanja Vidic of Serbia, during their Group A, Euro 2008, qualifying soccer match in Belgrade, Serbia, Wednesday, March 28, 2007. Soccer Euro 2008 Portugal Germany Germany's Arne Friedrich, left, and Portugal's Cristiano Ronaldo vie for the ball during the quarterfinal

Wednesday, July 15, 2009

Builtin JavaScript Date and Time Functions

Javascript provide us a lot of Date & Time function to resolve our daily problems. In this post i will try to introduce each builtin Date & Time function with proper explanation & example. Most of the times also i can not remember all functions. So i think the below list will surely help all javascript developers. The List of builtin javascript Date & Time Function is given below:List of builtin

Friday, July 10, 2009

Cross-browser javascript to create image rollovers using predownload approach

What is image rollover? Basicaly image rollover means swapping or changing images between two images when user moves the mouse cursor over the image. The most popular practice in our development life is most of the times our clients want to swap or change images for onmouseover(user moves mouse over the link) & onmouseout(user moves out mouse from the link) for links in the header menus or side

5 Free professional dating site templates

Making a website template is a time consuming as well as costly. In this post i will try to help how you will get a List of FREE WEB TEMPLATES to start your business within a couple of days. Each free templates will provide you the professional looks & feel. Just DOWNLOAD FREE TEMPLATES & start to earn money. If you are thinking to run a Love Romance or Dating site then read my post. When you

How to enable or disable Javascript in a web browser like Internet Explorer (IE), Mozilla Firefox, Opera

If you want to view webpages with javascripts then you need to ensure your web browser is javascript enabled. Most of the users enabled javascript by default thats why developer never take care this issue. Generally you can view a web page without enabling javascript but you may miss the javascript funtionality of this web page. Web developers do a lot of work using javascript so it will be

Thursday, July 9, 2009

Making or creating comma separated value list in a single line using SQL SP or UDF

Most of the times we need to display a summary or quotation line in our page by making a comma separated value list from SQL Server table data rows. But the reality is we did not get any built in function from SQL Server. But we did it by applying few techniques. Lets for SQL Server we can use the COALESCE function, In SQL Server 2000 we can use a variable smartly in our SELECT statement. To do