json学习笔记
摘要:Json介绍: JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。 json 官方网站 http://www.json.org/ json.net 下载地址 http://json.codeplex.com/releases/view/37810Demo: 描述: 点击获取按钮后,将请求页面,获取json数据,填充到表格html代码: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&
阅读全文
silverlight控件GridSplitte移动控制和DragDrop研究笔记
摘要:GridSplitter移动控制: GridSplitter控件默认添加后在水平方向不能向左拖动,向右拖动时左边的区域也跟着变小。 离预期结果相差太远。 如图: 设置GridSplitter的移动方向: 当GridSplitter的宽大于高时,GridSplitter只能上下移动 当GridSplitter的高大于宽时,GridSplitter只能左右移动 使用GridSplitter需要注意的问题: GridSplitter是分割紧挨着GridSplitter控件的区域,因此GridSplitter紧挨着的区域不能设置成固定值。 DragDrop: 新建的silverlight项目默认没有D
阅读全文
jquery学习笔记二
摘要:实现可编辑的表格demo:实例图: 代码:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://w
阅读全文
jquery学习笔记一
摘要:jquery基本信息 jquery的官方网站:www.jquery.com jquery解释:jquery是javascript的类库,提供了大量的javascript的类库和API,方便javascript开发。 jquery API中文参考手册: http://jquery-api-zh-cn.googlecode.com/svn/trunk/index.html前台数据提交到后台demo:实例图: 功能点: 1.使用$("#UserName")获取id为UserName的jquery对象。 2.使用jquery的get、ajax、load三个方法向后台提交数据。 3.
阅读全文