摘要: 其实在这里可以看到更多的:http://nettopologysuite.googlecode.com/svn/branches/GenericsWork/NetTopologySuite/IO/using System;using System.Collections;using System.IO;using GeoAPI.Geometries;using GisSharpBlog.NetTopologySuite.Algorithm;using GisSharpBlog.NetTopologySuite.Geometries;namespace GisSharpBlog.NetTopol 阅读全文
posted @ 2013-01-29 14:20 醉意人间 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 原理:异步提交POST数据到Web Services的方法上,分析返回的xml数据,获得结果。下面是用比较流行的Ajax框架JQuery来实现刚才的操作。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> < 阅读全文
posted @ 2013-01-29 07:54 醉意人间 阅读(426) 评论(0) 推荐(0) 编辑
摘要: javascript中向服务器发送http请求借助的是XMLHttpRequest对象,其他一些库如JQuery对http的请求应该是在这个上面的封装,创建XMLHTPRequest对象用下面的语句:function createXMLHttpRequest() { var xmlHttp; if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); if (xmlHttp.overrideMimeType) xmlHttp.overrideMimeType('text/xml'); } else if (windo 阅读全文
posted @ 2013-01-29 07:51 醉意人间 阅读(1312) 评论(0) 推荐(0) 编辑