thanx for the video..........
but the buttons or textbox which i am using in my project ,are coming above the calender when image utton is clicked......
so help me so that the whole calander may appear.......
hear i am giving a example of code which i am using....
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "www.w3.org/.../xhtml11.dtd">
<html xmlns="www.w3.org/.../xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" RenderMode="Inline">
<ContentTemplate>
<asp:TextBox ID="txtJoin" runat="server" Style="z-index: 100; left: 17px; position: absolute;
top: 88px" Width="128px"></asp:TextBox>
<ajaxToolkit:CalendarExtender ID="CalJoindate" runat="server" TargetControlID="txtJoin" PopupPosition="TopLeft" PopupbuttonID="ImageButton1">
</ajaxToolkit:CalendarExtender>
<asp:ImageButton ID="ImageButton1" runat="server" Style="z-index: 102; left: 157px;
position: absolute; top: 83px" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Button ID="Button1" runat="server" Text="Button" style="z-index: 100; left: 137px; position: absolute; top: 233px" />
</div>
</form>
</body>
</html>