TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Vivek Kumar Vishwas
NA
115
56.1k
How to print all date between two Different Dates in Asp.net
Nov 8 2017 2:05 AM
Hello
My Requirment is as following
Printing all the dates between first date & Second date
.aspx--------------
<
%@ Page
Language
=
"C#"
AutoEventWireup
=
"true"
CodeFile
=
"date-picker.aspx.cs"
Inherits
=
"date_picker"
%
>
<!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
>
jQuery UI Datepicker - Change Date Format Example
</
title
>
<
link
href
=
"css/ui-lightness/jquery-ui-1.8.19.custom.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
script
src
=
"js/jquery-1.7.2.min.js"
type
=
"text/javascript"
>
</
script
>
<
script
src
=
"js/jquery-ui-1.8.19.custom.min.js"
type
=
"text/javascript"
>
</
script
>
<
script
type
=
"text/javascript"
>
$(function () {
$("#txtDate").datepicker({ dateFormat: 'yy-mm-dd' });
});
</
script
>
<
script
type
=
"text/javascript"
>
$(function () {
$("#txtDate2").datepicker({ dateFormat: 'yy-mm-dd' });
});
</
script
>
<
style
type
=
"text/css"
>
.ui-datepicker
{
font-size: 8pt !important;
}
</
style
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
class
=
"demo"
>
<
b
>
Date 1:
</
b
>
<
asp:TextBox
ID
=
"txtDate"
runat
=
"server"
/>
<
br
/>
<
br
/>
<
b
>
Date 2:
</
b
>
<
asp:TextBox
ID
=
"txtDate2"
runat
=
"server"
/>
<
br
/>
<
br
/>
<
asp:Button
ID
=
"printdate"
runat
=
"server"
Text
=
"Print Dates"
onclick
=
"printdate_Click"
/>
</
div
>
</
form
>
</
body
>
</
html
>
. cs-------------------------
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Web;
using
System.Web.UI;
using
System.Web.UI.WebControls;
public
partial
class
date_picker : System.Web.UI.Page
{
protected
void
Page_Load(
object
sender, EventArgs e)
{
}
protected
void
printdate_Click(
object
sender, EventArgs e)
{
}
}
Attachment:
date-print.rar
Reply
Answers (
3
)
How to create Rules in Visual Studio 2017?
clr stored procedure object type input parameters ?