您的位置:首页 > Web前端 > JQuery

jquery-ajax之4:无刷新 select 数据源及事件绑定(2)

2011-05-04 11:49 405 查看
续前一篇无刷新 select 数据源及事件绑定 (1),本篇讲解select的onchange事件和利用ajax静态调用后台方法

页面(asp.net)
class(Car.cs)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace AjaxTest
{
publicclass Car
{
publicstring carName { get; set; }
publicstring carDescription { get; set; }
publicdouble carPrice { get; set; }

public Car(string name, string description, double price)
{
this.carName = name;
this.carDescription = description;
this.carPrice = price;
}
}
}

如有问题,请留言……
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐