Thursday, 18 December 2014

Display Calendar Control Selected Date Into Javascript Alert Message In Asp.Net

12/18/2014 - By Pranav Singh 2



This article will shoe you hoe you can display calendar control selected date into javascript alert message in asp.net.

So for this article first we will create a new asp.net application and add the below code into you page.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm6.aspx.cs" Inherits="WebApplication1.WebForm6" %>

<!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">
<script language="javascript">
    function DisplayDate() {
        var calendarDate = '<%= Calendar1.SelectedDate %>';
        alert(calendarDate);
    }
</script>
    <title>Display Calander Control Selected Date Into Javascript Alert Message In Asp.Net</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Calendar ID="Calendar1" runat="server"   ></asp:Calendar>  
        <asp:Button ID="Button1" runat="server" Text="Get Date" OnClientClick="javascript:DisplayDate();"/>
    </div>
    </form>
</body>
</html>

Now we will check the javascript code which will used to display the selected date using javascript.

<script language="javascript">
    function DisplayDate() {
        var calendarDate = '<%= Calendar1.SelectedDate %>';
        alert(calendarDate);
    }
</script>

Now we have done run the code to 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

2 comments:

  1. I need this code in mvvm c# .Net can you please send this one

    ReplyDelete
  2. I need this code In mvvm c# .Net .Can you send this one

    ReplyDelete

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