This is a very simple demo which can help you create a wcf applition quickly. Create a Solution Open Vistual Stuido and create a solution named WCFDemoJoey. It looks like this: Crate a Entity using System.Runtime.Serialization; namespace Entities { […
simple demo of Handlebars.js & jquery.js <html> <head> <script src="jquery-1.11.0.min.js"></script> <script src="handlebars-v1.3.0.js"></script> </head> <script> $(document).ready(fun…
要用cordova plugin 的话还是需要设置一下的 1. 下载 ng-cordova.js download the zip file here 2. 在index.html 中引用 (cordova.js 之前引进)如下: <script src="js/ng-cordova.js"></script> <script src="cordova.js"></script> 3.在你的angular.module…
using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Runtime.InteropServices;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web…
做GIS或其他内部数据统计项目的应该对FusionCharts也不会太陌生,简单易用已无需多说什么了,只是有时候框架不同,实现起来也稍有差异 引用dll调用FusionCharts类的静态方法RenderChartHTML 返回html绑定在数据控件上更为符合webform: 使用JS代码new FusionCharts对象,调用对象的setDataXML或者setDataURL方法更为符合MVC 1.HTML+JS <!--html--> <html xmlns="http:…
简单介绍 这篇文章记录了在 IOS 中使用 Swift 操作 CoreData 的一些基础性内容,因为缺乏文档,基本上都是自行实验的结果.错漏不可避免,还请谅解. 部分内容借鉴了 Tim Roadley 的<Learning.Core.Data.for.iOS(2013.11)>, 这本书主要介绍 ObjC的 CoreData . 创建一个新 XCode 项目 创建一个新的 XCode 项目. 创建一个 Empty Application 填写项目相关信息,如设置项目名称为: SwiftCor…
import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; public class server { public static void main(String[] args) throws IOException { DatagramSocket socket = new DatagramSocket(8080…
1. setCapture 简介 setCapture可以将鼠标事件锁定在指定的元素上,当元素捕获了鼠标事件后,该事件只能作用在当前元素上. 以下情况会导致事件锁定失败: 当窗口失去焦点时,锁定的事件,自动就会取消. alert也会导致事件的锁定取消.解决办法是在alert之后再次锁定. 鼠标右键也会导致事件解锁. setCapture只可以作用于以下事件: onclick ondblclick onmousedown onmouseup onmouseover onmouseout setCa…
AUTO-COMPLETE/AUTO-SUGGEST Auto-complete using Vaadin Offer auto-suggest or auto-complete to help your users increase efficiency and reduce errors. You can even create a grouped and formatted set of suggestionslike Apple does. CAROUSEL/COVERFLOW Caro…