gpt4 book ai didi

javascript - 通过javascript将Input(box)中的数据添加到sql db

转载 作者:行者123 更新时间:2023-12-03 11:17:58 25 4
gpt4 key购买 nike

这是我的代码,我使用它使用 javascript 中的 C# 代码将输入(框)“纬度”和“经度”中的数据写入数据库。

我想要的是每当按下按钮时就会插入数据。该代码仅在初始化时插入一次数据。 ButtonClick 上没有任何效果发生。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Markers.WebForm1" %>

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#google_map {width: 550px; height: 450px;margin-top:50px;margin-left:auto;margin-right:auto;}
</style>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?v=3.exp">
</script>
<script type="text/javascript">

var mapCenter = new google.maps.LatLng(33.650077, 73.034054); //Google map Coordinates
var map
var marker
var marker1


function initialize() //function initializes Google map
{
var googleMapOptions =
{
center: mapCenter, // map center
zoom: 15, //zoom level, 0 = earth view to higher value
panControl: true, //enable pan Control
zoomControl: true, //enable zoom control
zoomControlOptions: {
style: google.maps.ZoomControlStyle.SMALL //zoom control size
},
scaleControl: true, // enable scale control
mapTypeId: google.maps.MapTypeId.ROADMAP // google map type
};
map = new google.maps.Map(document.getElementById("google_map"), googleMapOptions);
marker = new google.maps.Marker({
position: mapCenter,
map: map,
draggable: true,
animation: google.maps.Animation.DROP,
title: "This a new marker!",
icon: "http://maps.google.com/mapfiles/ms/micons/blue.png"
});
marker1 = new google.maps.Marker({
position: mapCenter,
map: map,
draggable: true,
animation: google.maps.Animation.DROP,
title: "This a new marker!",
icon: "http://maps.google.com/mapfiles/ms/micons/blue.png"
});
google.maps.event.addListener(marker, 'dragend', function (evt) {
document.getElementById('latitude').value = evt.latLng.lat();
document.getElementById('longitude').value = evt.latLng.lng();

});

google.maps.event.addListener(marker1, 'dragend', function (evt) {
document.getElementById('latitude1').value = evt.latLng.lat();
document.getElementById('longitude1').value = evt.latLng.lng();
});

}
function addMyMarker() { //function that will add markers on button click
<% Markers.DataClasses1DataContext db = new Markers.DataClasses1DataContext();%>
<% Markers.LocationDataPacket l = new Markers.LocationDataPacket(); %>
<% l.cellPhoneGPSData = 1; %>
<% DateTime dt = DateTime.Now ; %>
<% l.Lat = Convert.ToDouble(latitude.Value.ToString());%>
<% l.time = dt; %>
<% l.Long = Convert.ToDouble(longitude.Value.ToString()); %>
<% db.LocationDataPackets.InsertOnSubmit(l); %>
<% save(db); %>
}
</script>
</head>
<body onLoad="initialize()">
<div id="google_map" ></div><button id="drop" onClick="addMyMarker()">Drop Markers</button>
<input id="latitude" runat="server" value="3.33" />
<input id="longitude" type="text" runat="server" value="3.33" />
<input id="latitude1" type="text" value="3.33"/>
<input id="longitude1" type="text" value="3.33"/>
</body>
</html>

我没有 JavaScript 编码经验。任何帮助将不胜感激。

最佳答案

JavaScript 运行客户端,不能将 C#“嵌入”其中,为此,我会将 C# 代码移动到其自己的页面,并使用 AJAX 向服务器发送/接收数据,并相应地执行 C# 代码

关于javascript - 通过javascript将Input(box)中的数据添加到sql db,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27251690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com