Saturday 17 August 2013

Multiple File Upload using JQuery

Introduction:
Here I will explained how to build a Gmail style file uploader using JQuery and Uploadify plugin for JQuery in ASP.Net
Description:
This has been asked several times in ASP.Net forums about how to upload multiple files AJAX style along with progress bar similar to the Google’s GMAIL
And the answer is Uploadify plugin for JQuery which does the same in few simple steps. In this article I’ll explain the same.

   1: <link rel="Stylesheet" type="text/css" href="CSS/uploadify.css" />

   2: <script type="text/javascript" src="scripts/jquery-1.3.2.min.js"></script>

   3: <script type="text/javascript" src="scripts/jquery.uploadify.js"></script>

Add an ASP.Net FileUpload Control to the form tag

   1:  

   2: <a 

   3: href="javascript:$('#<%=FileUpload1.ClientID%>').fileUploadClearQueue()">Clear</a>
Continue Reading

Technorati Tags: ,,

Thursday 15 August 2013

how to import Contacts from GMAIL using ASP.NET and C#

Introduction:

In this article I will explain how to import gmail contacts of a user by using GContacts Data API provided by Google.

Description:


We have developed one social network site at that time we think that how to popularize the our social network site I have checked some of social network sites at that time we got idea to implement import contacts concept is best to intimate all of our friends at a time I have searched so many websites to implement this concepts but no result finally I have implemented import contacts from gmail

I used ASP.NET and C# for developing this application.

We need to follow below steps to get gmail contacts

Step-1:  Download Google data API setup from the specified URL

Continue Reading

aspdotnetdebug: SQL Server Split Function Example in 2008 to Split...

aspdotnetdebug: SQL Server Split Function Example in 2008 to Split...:   Introduction : Here I will explain simple split function in SQL Server to split comma separated string into table values in SQL Server da...

Tuesday 13 August 2013

SQL Server Split Function Example in 2008 to Split Comma Separated String into Table

 

Introduction:

Here I will explain simple split function in SQL Server to split comma separated string into table values in SQL Server database or How to split comma separated string with custom split() function in SQL Server.

Description: 

To split comma separated string in SQL Server we need to write custom method for that we need to create one function like as shown below

Custom Split function to split comma separated string into table

Continue Reading

Monday 12 August 2013

Add Bookmark link to website using javascript | Add to Favorites (IE) / Bookmark (Firefox) using Javascript


Introduction

Here I will explain how to add bookmark link to our website using JavaScript in asp.net.

Description

In many websites we will see link like “Bookmark this Site” if we click on that bookmark link that will prompts the user with dialog box to add that specified link in favorites list. If we want to add that type functionality to our website we can write in different ways. Here I will explain in two different ways to add Bookmark functionality

Scheduling automated incremental daily backup in sql server 2012

Method 1



To schedule a database backup operation by using SQL Server Management Studio in SQL Server 2012, follow these steps:
  1. Start SQL Server Management Studio.
  2. In the Connect to Server dialog box, click the appropriate values in the Server type list, in the Server name list, and in the Authentication list.
  3. Click Connect.
  4. In Object Explorer, expand Databases.
  5. Right-click the database that you want to back up, click Tasks, and then click Back Up.
  6. In the Back Up Database - DatabaseName dialog box, type the name of the backup set in the Name box, and then click Add under Destination.
  7. In the Select Backup Destination dialog box, type a path and a file name in the Destinations on disk box, and then click OK.
  8. In the Script list, click Script Action to Job.
  9. In the New Job dialog box, click Steps under Select a page, and then click Edit if you want to change the job parameters.
    Note In the Job Step Properties - 1 dialog box, you can see the backup command.
  10. Under Select a page, click Schedules, and then click New.
Continue Reading…..