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

jquery学习笔记一

2010-04-06 20:40 387 查看
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:

实例图:

  代码

protected void Page_Load(object sender, EventArgs e)
{
if (HttpContext.Current.Request.QueryString["m"] != null)
{
//将请求的数据通过GB2312解码
string method = System.Web.HttpUtility.UrlDecode(HttpContext.Current.Request.QueryString["m"], Encoding.GetEncoding("GB2312"));//

HttpContext.Current.Response.Write(method+"已经被验证!");

Response.End();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: