Click here to Skip to main content
15,881,757 members
Articles / Web Development / HTML

An ASP.NET control to pick a Shamsi date on client-side from a JavaScript Persian calendar

Rate me:
Please Sign up or sign in to vote.
4.71/5 (25 votes)
2 Mar 2008CPOL 58.7K   1.8K   38   18
This an ASP.NET server-side control that wraps Mr Amin Habibi's JavaScript calendar.

ScreenShot.JPG

Introduction

This is a simple ASP.NET control that can be used for easily picking a Shamsi date. You only have to add this control to the Toolbox and drag it into your page, or register the assembly with the <@Register page directive.

Base idea

See this link for the previous version of this idea implemented in client-side JavaScript, from Amin Habibi: http://www.codeproject.com/KB/scripting/Persian_Date_Picker.aspx.

Using sample

Registering the assembly:

ASP.NET
<%@ Register Assembly="AspNetPersianDatePickup" 
    Namespace="AspNetPersianDatePickup" TagPrefix="pcal" %> 

Using the control:

ASP.NET
<pcal:PersianDatePickup ID="PersianDatePickup1" 
       runat="server"></pcal:PersianDatePickup> 

Background

The calendar's JavaScript file is embedded in the assembly resource, and it serves the clients with the "ASP.NET WebResource" technology. I used this for stylesheets and images as well.

Points of interest

In the server side, you can use the Text property for retrieving the Christian datetime in string format. If you need the control's value as a DateTime data type, you can use or bind the SelectedDateTime property. You may use the PersianDateString property for retrieving the Shamsi date as a string.

Good luck and a special thanks to "Mr. Amin Habibi".

License

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


Written By
Web Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
Python, PostgreSQL, Cherrypy, Apache, .Net , C#, Asp.net, .Net Remoting, Ajax, Controls, MVC, SOA, SOAP, Razor

Comments and Discussions

 
General[Message Removed] Pin
Mojtaba Vali4-Mar-08 19:59
Mojtaba Vali4-Mar-08 19:59 

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

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