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
Rocky Rocky
NA
317
151.6k
How to implement jquery calender text box with in repeater
Aug 21 2014 3:46 AM
Hi Friends,
i m creating one application the concept is insert jquery date in repeater control in c# so i made code
in asp.net:
-------------
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"/>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css"/>
<script>
$(function () {
$("#<%= Date.ClientID %>").datepicker();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Repeater ID="Rep" runat ="server" >
<HeaderTemplate>
<table cellpadding="1" cellspacing="1" width="100%" style="font-family:Verdana;border:1px solid #C0C0C0;background-color:#D8D8D8">
<tr style="background-color:#FF781E">
<th>
ID
</th>
<th>
Customer
</th>
<th>
Date
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr style="background-color:White">
<td>
<asp:TextBox ID="id" runat="Server" Text='<%#Eval("id")%>'></asp:TextBox>
</td>
<td>
<asp:TextBox ID="Cus_name" runat="Server" Text='<%#Eval("Cus_name")%>'></asp:TextBox>
</td>
<td>
<asp:TextBox ID="Date" runat="server"></asp:TextBox>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
<br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Insert" />
Error : The name 'Date' does not exist in the current context
Thanks
Rocky
Reply
Answers (
0
)
How to update using LINQ to SQL in vb.net
Capcha code on registration form