博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hhgis驱动
阅读量:5791 次
发布时间:2019-06-18

本文共 2710 字,大约阅读时间需要 9 分钟。

 

 

function loadPathInfo

在car.js中

function loadPathInfo(carid, fnClass) {    var qureydrive;    if (jsonp)        qureydrive = remote_http + "drive/qrGisSet.ashx";    else {        qureydrive = "../drive/qrGisSet.ashx";    }    var my_page = "loadpath"    var url = qureydrive + "?page=" + my_page;    url += "&station=" +  encodeURIComponent(carid);    ajaxLoadGenData(url, my_page, _loadPathInfo, fnClass);}

 

 

 

qrGisSet.ashx

 

public void ProcessRequest(HttpContext context)    {          string carid = HttpContext.Current.Request.Params["station"];          string page = HttpContext.Current.Request.Params["page"];          string callback = HttpContext.Current.Request.Params["callback"];                // string connectionSrting = System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionString"].ToString();          string connectionSrting = DBLogin.getConnectionStrings(95);          string rt="";           try {               if (page == "loadpath")//调度日志               {                   rt = _loadPathinfo(connectionSrting, carid);                   if(rt==null){                       rt = "{success:false,message:'服务器loadpath错!'}";                   }               }               else {                  rt = "{success:false,message:'服务器loadpath错!'}";               }        }        catch (Exception e)      {            rt = "{success:false,message:'上传失败,可能因为上传文件过大导致!'}";        }//catch

 增加  string tableid = HttpContext.Current.Request.Params["tableid"];

选择不同的表

updateGisSet.ashx

同上

 

TrackStation 表

 

CREATE TABLE [dbo].[TrackStation](    [StationId] [nchar](20) NOT NULL,    [Name] [nvarchar](50) NOT NULL,    [StartTime] [datetime] NULL,    [EndTime] [datetime] NULL,    [Description] [nvarchar](4000) NULL,    [curstatus] [int] NULL,    [curposx] [real] NULL,    [curposy] [real] NULL,    [curpath] [varchar](max) NULL,    [curtime] [datetime] NULL,    [batchid] [int] NULL, CONSTRAINT [PK_TrackStation_1] PRIMARY KEY CLUSTERED (    [StationId] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

 

 

主页面

 在主页中重设

function getDriver(level) {          var qureydrive;          if (jsonp)              qureydrive = remote_http + "drive/qrGisSet.ashx";          else {              qureydrive = "../drive/qrGisSet.ashx";          }          return qureydrive;      }      function getUpdateDriver(level) {          if (jsonp)              return remote_http + "drive/updateGisSet.ashx";          else {              return "../drive/updateGisSet.ashx";          }      }

 

posted on
2015-10-11 20:43 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/hhudata/p/4869981.html

你可能感兴趣的文章
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>
线程退出时执行函数,处理资源
查看>>
java中关于时间的格式化
查看>>
Wine QQ2012 笔记
查看>>
qml demo分析(clocks-时钟)
查看>>
vue去掉#——History模式
查看>>
2018年7月第一周网站建站笔记
查看>>
MongoDB工具MagicMongoDBTool使用介绍(一) -- 简单MongoDB入门
查看>>
javascript的事件
查看>>
201521123009 《Java程序设计》第1周学习总结
查看>>
年终述职--常见问题分析解答
查看>>
C#_细说Cookie_Json Helper_Cookies封装
查看>>
在mui中创建aJax来请求数据..并展示在页面上
查看>>
spring 之AOP
查看>>
总结 15/4/23
查看>>
Windows 7环境下网站性能测试小工具 Apache Bench 和 Webbench使用和下载
查看>>
C#常见错误解决方法
查看>>
安装cnpm (npm淘宝镜像)
查看>>
Java 面向对象(基础) 知识点总结I
查看>>
读书笔记《自控力》
查看>>