Мой вызов Ajax
$('#QuickReserve').click(function () {
var now = new Date();
alert(now);
var _data = {
'ComputerName': _computerName,
'_mStart': now.toTimeString(),
'_mEnd': now.toDateString()
};
$.ajax({
cache: false,
// contentType: "application/json; charset=utf-8",
type: "POST",
async: false,
url: "/Home/SetMeeting",
dataType: "json",
data: _data,
success: "",
error: function (xhr) {
alert("Error");
alert(xhr.responseText);
}
});
});
Мой код C #
public ActionResult SetMeeting(string ComputerName, DateTime? _mStart, DateTime? _mEnd)
{
}
Значения DateTime не принимаются в конце кода ..... Они просто отображаются пустыми.В jquery, когда я пытался
'_mStart': now.toTimeString(),
'_mEnd': now.toDateString()
, чтобы datestring действительно возвращала сегодняшнюю дату, но я хочу, чтобы часть времени времени также была.