This SharePoint tutorial explains, how to set a default date to SharePoint DateTime control in SharePoint 2013/2016 using SharePoint Server Object model code. Here we will set the default date as today’s date to the SharePoint DateTime control in SharePoint 2013/2016.
User want to see the default values while pulling out the loan details report with the given start and end date. Where the start date should be today’s date and end date should be “12/31/8888” in a server side WebPart control. When user click on Submit button we should ensure that End date is not less than Start Date.
Solution:
We can implement this in both CSOM and c#.net. Since the requirement is to implement in a server side control. Below is the code snippet to achieve this:
SharePoint Date Control:
<SharePoint:DateTimeControl ID=”cldStartDt” runat=”server” />
<SharePoint:DateTimeControl ID=”cldEndDt” runat=”server” />
<asp:Label ID=”lblMessage” runat=”server” ></asp:Label>
C# code to populate default values:
cldStartDt.SelectedDate = Convert.ToDateTime(DateTime.Today.ToString());
cldEndDt.SelectedDate = Convert.ToDateTime(DateTime.MaxValue.AddYears(-1111).ToString());
“Convert.ToDateTime(DateTime.Today.ToString())” with this we can get today’s date in Date and Time format.
Convert.ToDateTime(DateTime.MaxValue.AddYears(-1111).ToString()) with this we get the end date as “12/31/8888”
Validation to ensure that EndDate is not less than Start Date:
Which the below code snippet we can achieve the validation.
int dtDiff = Convert.ToInt32(endDate.Date.Subtract(Convert.ToDateTime(cldStartDt)).Days);
if(dtDiff>0)
{
lblMessage.Text = “End Date must be greater than Start Date!!”;
}
You may like following SharePoint tutorials:
- Read, create, update, delete file using JavaScript object model (jsom) in SharePoint
- Get sharepoint site template PowerShell + (SharePoint Object Model)
- How to get logged in user count in SharePoint
- Get All approval task through template ID using SharePoint Server object model
- Write to ULS log using PowerShell in SharePoint 2013/2016
- Create a custom Team web part using SharePoint server object model and bootstrap
- Create SharePoint site programmatically
- Add user to SharePoint group programmatically
- SharePoint user custom actions (Designer + Programmatically)
- SharePoint Online jsom examples
I hope this SharePoint tutorial helps to set today’s date to SharePoint date picker using SharePoint 2013/2016 server object model code.
I am Krishna.Vandanapu a SharePoint architect working in IT from last 13+ years, I worked in SharePoint 2007, 2010, 2013, 2016 and Office 365. I have extensive hands on experience in customizing SharePoint sites from end to end. Expertise in SharePoint migration tools like Sharegate, Doc Ave and Metalogix. Migrated SharePoint sites from SharePoint 2007 to 2010 and 2010 to 2013 several times seamlessly. Implementing CSOM with Microsoft best practices. Spent quality time in configuring SharePoint application services like User Profile, Search, Managed Meta data services etc. Now exploring SharePoint Framework and SharePoint 2019