摘要: 1.下载ajax, .net1.1版本ajaxpro.dll .net2.0就用ajaxpro2.dll 2.在VS项目里面添加它们的引用,并在Web.COnfig中配置(我这里用的是.net 2.0) Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.... 阅读全文
posted @ 2007-07-22 19:36 Anson2020 阅读(569) 评论(0) 推荐(0)
摘要: 一、介绍一下Ajax在Asp.Net中的基本使用 1、在工程中引入Ajax.dll文件。 Ajax.dll实现XmlHttpRequest请求服务器的实现细节。.net项目中,添加上对其的引用,就可以进 行相应封装操作了。 2、在web.config中设置HttpHandle 3、在 与间加入一些引用如下: ... 阅读全文
posted @ 2007-07-22 19:35 Anson2020 阅读(580) 评论(0) 推荐(0)
摘要: Ajax 实现DataGrid邦定 1. 在引用中添加引用Ajax.dll 2.在web.config中建立HttpHandler(这个当然是在system.web串里的) <httpHandlers><add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" /></httpHandlers>... 阅读全文
posted @ 2007-07-22 19:34 Anson2020 阅读(755) 评论(0) 推荐(0)
摘要: Untitled Page 阅读全文
posted @ 2007-07-22 19:32 Anson2020 阅读(517) 评论(0) 推荐(0)
摘要: 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime();; 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now;; 1.2 取当前年 int 年=currentTime.Year;; 1.3 取当前月 int 月=currentTime.Month;; 1.4 取当前日 int 日... 阅读全文
posted @ 2007-07-22 19:30 Anson2020 阅读(566) 评论(0) 推荐(0)