Click here to Skip to main content
Licence CPOL
First Posted 11 Aug 2008
Views 39,647
Downloads 525
Bookmarked 40 times

How to easily use the jQuery DatePicker in ASP.NET

By | 20 Aug 2008 | Article
How to easily use the jQuery DatePicker in ASP.NET.

Introduction

JQuery is an excellent JavaScript library to build modern user interactive websites. It's very easy to use jQuery in any web application. jQuery has a strong set of JavaScript UI controls, like date picker, tab panel etc.

I've written a small utility class to use the jQuery DatePicker in ASP.NET. It's very simple to use this class. You just need to pass the Page object and TextBox of your page.

Screenshot

ScreenShot.jpg

Using the code

Take a look at the the following utility class:

using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Util
{
    public class JQueryUtils
    {
        public static void RegisterTextBoxForDatePicker(Page page, 
                           params TextBox[] textBoxes)
        {
            RegisterTextBoxForDatePicker(page, "dd-mm-yy", textBoxes);
        }
        public static void RegisterTextBoxForDatePicker(Page page, 
               string format, params TextBox[] textBoxes)
        {
            bool allTextBoxNull = true;
            foreach (TextBox textBox in textBoxes)
            {
                if (textBox != null) allTextBoxNull = false;
            }
            if (allTextBoxNull) return;
            page.ClientScript.RegisterClientScriptInclude(page.GetType(), 
                 "jquery", "JQuery/jquery.js");
            page.ClientScript.RegisterClientScriptInclude(page.GetType(), 
                 "jquery.ui.all", "JQuery/ui/jquery.ui.all.js");
            page.ClientScript.RegisterClientScriptBlock(page.GetType(), 
                 "datepickerCss", 
                 "<link  rel=\"stylesheet\" href=\"JQuery/themes/" + 
                 "flora/flora.datepicker.css\" />");
            StringBuilder sb = new StringBuilder();
            sb.Append("$(document).ready(function() {");
            foreach (TextBox textBox in textBoxes)
            {
                if (textBox != null)
                {
                    sb.Append("$('#" + textBox.ClientID + "').datepicker(
                       {dateFormat: \"" + format + "\"});");
                }
            }
            sb.Append("});");
            page.ClientScript.RegisterClientScriptBlock(page.GetType(), 
                 "jQueryScript", sb.ToString(), true);
        }
    }
}

The usage is very simple. If you have a TextBox named MyDateTextBox in your .aspx page, then you have to write the following line in the Page_Load event to attach the TextBox with jQuery:

protected void Page_Load(object sender, EventArgs e)
{
    Util.JQueryUtils.RegisterTextBoxForDatePicker(Page, MyDateTextBox); 
}

The second parameter takes variable arguments. So you can pass any number of TextBoxes to the function. There is also an overloaded function to take your desired date format.

You must download the jQuery library from the jQuery UI site http://ui.jquery.com/download.

You can just download the files for DatePicker. But remember to rename the .js files in my JQueryUtils class. You can see that I've written the jQuery core library JavaScript file name, .ui.all.js file, and the .css file for DatePicker.

I've attached a sample project as well. Cheers!

My other articles

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sowkot Osman

Software Developer (Senior)

Bangladesh Bangladesh

Member

4.5 years of extensive experience in devloping both desktop and web applications in C#.NET, VB.NET and ASP.NET
3.5 year of experience in developing web application in J2EE, Free Marker, JSP, Spring MVC, Spring Webflow.
Expertise in Software Architecture and Framework design.
Blog: http://sowkot.blogspot.com



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionchange default language PinmemberBurak Akku2:19 12 Mar '12  
GeneralJquery Date picker PinmemberFranklinlloyd9:27 19 Jan '10  
Generalupdate panel problem Pinmemberandresdigi251:56 6 Nov '09  
NewsEasier way to use jQuery Datepicker on ASP.NET controls PinmemberRob van Meeuwen22:52 1 Oct '09  
GeneralNo response on FormView's TextBox Pinmemberjosh.wu16:15 8 Sep '09  
GeneralUse the text Pinmemberprpleprncs19:15 2 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 21 Aug 2008
Article Copyright 2008 by Sowkot Osman
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid