In this tutorials you will know How to add a CalendarExtender to a gridView by using a template field with a TextBox and CalendarExtender
Read The Full Tutorial.
In this tutorials you will know How to add a CalendarExtender to a gridView by using a template field with a TextBox and CalendarExtender
Here is the code:
<form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <div> <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="CategoryID" DataSourceID="SqlDataSource1" ShowFooter="true" AllowPaging="True" AllowSorting="True"> <Columns> <asp:BoundField DataField="CategoryID" HeaderText="CategoryID" SortExpression="CategoryID" /> <asp:BoundField DataField="CategoryName" HeaderText="CategoryName" SortExpression="CategoryName" /> <asp:TemplateField> <ItemTemplate> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <cc1:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="TextBox1"/> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=SUPROTIM;Initial Catalog=Northwind;Integrated Security=True" SelectCommand="SELECT [CategoryID], [CategoryName] FROM [Categories]" > </asp:SqlDataSource> </div> </form>
|