我有一个包含多种表单的 MVC 应用程序。提交表单时,它会将用户的 gps 坐标传递给服务器。我还想传递客户当前的日期时间。
有没有人对最好的方法有任何想法?
这些表单是标准的 html 表单并使用基本提交。
我的表格如下所示。那么我如何最好地将 javascript 日期时间值附加到提交调用?
@using (Ajax.BeginForm("CheckIn", "Home", "Nothing", new AjaxOptions { }))
{
<fieldset>
<p>Move your Tile here to let those around you see it...</p>
<input type="hidden" name="lat" id="hckLat" value="" />
<input type="hidden" name="lon" id="hckLon" value="" />
<input type="hidden" name="date" id="hckDate" value="" />
<input type="submit" value="Check In!" />
</fieldset>
}