js 타이머 + asp 타이머
5922 단어 asp
<script type="text/javascript">
var counts = 0;
function starts() {
if (counts == 1) {
alert(' !')
return false;
}
if (confirm(" ?")) {
setInterval("GetJSMapGps()", 15000); //15
counts = 1;
return true;
}
else return false;
}
function dw() {
appletFrame.s_locationSet(124.805832, 46.571381);
}
function GetJSMapGps() {
var gpsX;
var gpsY;
gpsX = window.document.getElementById("hdflog").value; //
gpsY = window.document.getElementById("hdflag").value; //
if (gpsX != null && gpsX != "" & gpsY != null && gpsY != "") {
appletFrame.s_locationSet(gpsX, gpsY);
}
}
</script>
asp:
protected void Timer1_Tick(object sender, EventArgs e)
{
string id = ViewState["mobileid"].ToString();
if (!string.IsNullOrEmpty(id))
{
DataTable dtGps = GBLL.GetList(" imei = '" + id + "' order by intime desc ").Tables[0];
if (dtGps.Rows.Count > 0)
{
string lat = dtGps.Rows[0]["lat"].ToString();
string lon = dtGps.Rows[0]["lon"].ToString();
hdflog.Value = lon;
hdflag.Value = lat;
}
}
}
protected void timersWatch_Click(object sender, EventArgs e)
{
Timer1.Interval = 10 * 1000;//10
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Shadows: Spooktober in Answer Set ProgrammingASP can be viewed as an extension of Prolog. Pure Prolog rules are based on definite clauses, that is Horn clauses which...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.