Sunday, 2 November 2014

CalendarExtender Example With Custom Style By Css Uaing Asp.net and Css

11/02/2014 - By Pranav Singh 0

This article will show you how you can apply a custom them or style to a ajaxcontroltoolkit CalendarExtender in asp.net using style sheet css.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>CalendarExtender Example For Custom Style Css and Date Format Uaing Asp.net and Css</title>
    <style>
        .teamCalendar .ajax__calendar_container
        {
            border: 2px solid black;
            background-color: Maroon;
            font-size: 11px;
            color: Blue;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <b>DOB : </b>
    <asp:TextBox ID="TextBox1" runat="server" Width="200px" autocomplete="off"></asp:TextBox>
    <asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="TextBox1" PopupPosition="BottomLeft"
        CssClass="teamCalendar">
    </asp:CalendarExtender>
    </form>
</body>
</html>

In above code I have set the TargetControlID as the textbox id. So when user click on textbox calendar will open. In this check the CssClass name.  This will change the calendar look and feel.
Now we have done run the application and check the output.

About the Author

We are the group of people who are expertise in different Microsoft technology like Asp.Net,MVC,C#.Net,VB.Net,Windows Application,WPF,jQuery,Javascript,HTML. This blog is designed to share the knowledge.

Get Updates

Subscribe to our e-mail newsletter to receive updates.

Share This Post

0 comments:

Please let me know your view

Free Ebooks


About Us

We are the group of people who are expertise in different Microsoft technology like Asp.Net,MVC,C#.Net,VB.Net,Windows Application,WPF,jQuery,Javascript,HTML. This blog is designed to share the knowledge.

Contact Us

For writing article in this website please send request by your

GMAIL ID: dotnetpools@gmail.com

Bugs and Suggestions

As we all know that this website is for sharing knowledge and providing proper solution. So while reading the article is you find any bug or if you have any suggestion please mail us at contact@aspdotnet-pools.com.

Partners


Global Classified : Connectseekers.com
© 2014 aspdotnet-pools.com Designed by Bloggertheme9.
back to top