单击按钮显示gps纬度和经度

时间:2013-01-16 02:58:37

标签: c# asp.net latitude-longitude

我正在研究gps网络应用,我需要在页面加载或按钮点击时将用户的经纬度输入到隐藏字段。通过使用这些,我可以从我的数据库中检索用户所需的信息。

目前我可以在页面加载时通过javascript检索gps坐标,有人可以告诉我如何将这些lat和long用于c#中的hiddenfiled或label。

1 个答案:

答案 0 :(得分:0)

alert( $("input#fooBox").val() ); // alert default value
$("input#fooBox").val("end test"); // change value
alert( $("input#fooBox").val() ); // alert new value

<input type="hidden" id="fooBox" value="hello world" />