I am currently working with C#.net to develop a reservation system
My goal is to provide the user with the option to change the date using arrows, similar to the image displayed (please click on the link)
Date Image
https://i.sstatic.net/sBP5r.png
I have successfully implemented displaying the current date on the screen, but I am unsure of how to enable the user to use arrows to adjust the dates. Below are the HTML codes:
<asp:Label ID="lblServerDateTime" runat="server" CssClass="auto-style13" style="font-size:30px;" />
As well as the C# code snippet:
protected void page_load(object sender, EventArgs e)
{
lblServerDateTime.Text = DateTime.Now.ToString("M");
}