You can add a hidden input field to the page. Using the altField and altFormat options you can send the data to you page in an alternative format.
To do this, you can create a custom editor template for the DateTime format. Add the file DateTime.cshtml to the Views/Shared/EditorTemplates folder.
You can then use a contents like this (not tested):
@model DateTime?
@using System.Globalization
@{
var name = MvcHtmlString.Create(ViewData.TemplateInfo.GetFullHtmlFieldName(""));
var id = MvcHtmlString.Create(ViewData.TemplateInfo.GetFullHtmlFieldId(""));
var visibleID = id + "_editor";
var value = Model ?? DateTime.Today;
var formattedValue = value.ToString("dd MMM yyyy");
}
<input type="text" id="@(visibleID)" value="@formattedValue" />
<input type="hidden" id="@(id)" name="@(name)" value="@value.ToString("yyyy/MM/dd")" />
<script type='text/javascript'>
$(function () { $('#@(visibleID)').datepicker({ dateFormat: 'd mm y', altField='@id', altFormat='d/m/y' }); });
</script>
Then you only have to use the TextBoxFor, any DateTime field will have the datetimepicker activated.