悟生慧

 

2012年8月28日

Asp.net MVC 使用json数据格式交互 示例

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Collections;namespace MvcApplicJson.Controllers{ [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Messa... 阅读全文

posted @ 2012-08-28 17:01 悟生慧 阅读(2870) 评论(0) 推荐(0) 编辑

JavaScript的prototype的属性和方法-使用

摘要: function Person(name, sex) { this.name = name; this.sex = sex;}Person.prototype = { getName: function () { return this.name; }, getSex: function () { return this.sex; }}Person.prototype.age = 25;var zhang = new Person("ZhangSan", "man");var chun = new Person("ChunHua".. 阅读全文

posted @ 2012-08-28 10:53 悟生慧 阅读(158) 评论(0) 推荐(0) 编辑

导航