SPUtility.GetSelectedDate method
Retrieves the CalendarDate parameter value from the request context.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared Function GetSelectedDate ( _
request As HttpRequest, _
web As SPWeb _
) As String
'Usage
Dim request As HttpRequest
Dim web As SPWeb
Dim returnValue As String
returnValue = SPUtility.GetSelectedDate(request, _
web)
public static string GetSelectedDate(
HttpRequest request,
SPWeb web
)
Parameters
request
Type: System.Web.HttpRequestAn object that represents the request context.
web
Type: Microsoft.SharePoint.SPWebAn object that represents the SharePoint Foundation Web site with which the request context is associated.
Return value
Type: System.String
The CalendarDate parameter value from the request context.
Remarks
The value returned is the CalendarDate parameter from the collection of form variables. If there is no CalendarDate parameter in the form collection, the method returns the CalendarDate parameter from the query string.If neither of these values exists, the method returns a null reference (Nothing in Visual Basic).