使用ASP.Net 3.5, LINQ and AJAX (in C# 3.5)构建一个web应用程序聊天室阅读全文>
发表于 @ 2008年07月21日 09:19:00|评论(loading...)|收藏
【原文地址】Links to ASP.NET AJAX 1.0 resources, and answers to some common questions
【原文发表日期】 Thursday, January 25, 2007 12:53 AM
阅读全文>
发表于 @ 2007年01月26日 09:21:00|评论(loading...)|编辑|收藏
请尝试Michael Schwarz的AJAX .NET包装器,通过它ASP.NET开发人员可以快速方便的部署很容易利用AJAX功能的页面。需要注意的是,这个包装器处于初期开发阶段,因此还没有完全成熟。
(AJAX.DLL-http://ajax.schwarz-interactive.de/CSharpSample/)阅读全文>
发表于 @ 2007年01月11日 16:16:00|评论(loading...)|编辑|收藏
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。阅读全文>
发表于 @ 2007年01月11日 14:58:00|评论(loading...)|编辑|收藏
Ajax.net 做为Ajax技术在dotNet 框架下的实现,作者Michael Schwarz采取了一种封装效果相当棒的技术:将客户端处理XML、事件调用方式都封装在2个Javascript文件中(AjaxPro.prototype.js 和AjaxPro.core.js),同时将这2个重要文件以资源的形式编译于dll中,在处理客户端请求其自定义的.ashx文件时,返回这两个文件。所以我们在使用Ajax.net时需要在Web.config中添加如下httpHandlers以AjaxPro.AjaxHandlerFactory来处理.ashx文件
(Ajax.NET Professional some example )http://www.ajaxpro.info/阅读全文>
发表于 @ 2007年01月11日 11:29:00|评论(loading...)|编辑|收藏
With the next release of Ajax.NET Professional you will be able to transform any XmlDocument or XmlNode into a JSON object. This is really cool because we have already a lot of xml documents in our web applications. Currently you have to write a custom class or struct where you have to fill the properties or public fields. Now, you simply call the JavaScriptUtil.GetIJavaScriptObjectFromXmlNode method to return a JavaScript object. At http://munich.schwarz-interactive.de/datatype.aspx I have adde阅读全文>
发表于 @ 2007年01月11日 11:04:00|评论(loading...)|编辑|收藏