2010年6月29日
摘要:
在刚刚结束的Mix09大会上(Mix是微软面向web开发者和设计者的会议),Silverlight团队的程序经理Joe Stegman介绍了silverlight3的许多让人兴奋的新功能.1. 支持更多的媒体编码格式在Silverlight 3中新增加的多媒体编码格式包括H.264,AAC,MP4。Silverlight这项技术,从出生以来,就一直把对多媒体,尤其是视频的支持,放在首要位置。这次对...
阅读全文
posted @ 2010-06-29 05:32
一粒沙
阅读(209)
推荐(0)
编辑
摘要:
本文作者Chad Campbell是一名微软MVP以及系统解决方案顾问。他通过这篇文章介绍了Silverlight对于普通用户,MBA和开发者的价值何在。本翻译节选了有关普通用户和开发者的两个部分,以便于读者了解自己所关注的Silverlight新功能。【51CTO快译】“Silverlight是一个客户端运行时,这个运行时为开发者提供设计与开发的平台,并在互联网上传递丰富互动的体验&...
阅读全文
posted @ 2010-06-29 05:30
一粒沙
阅读(310)
推荐(0)
编辑
摘要:
微软最近发布了此前一直在秘密研发的.Net RIA Services(此前叫做“Alexandria”项目)。这个项目目前只是个预览版,不过对于.NET RIA Services以及Silverlight 3可能实现的功能,本文的作者表示了自己的看法。商业应用程序的开发最打的挑战不是在绚丽的动画效果,视频播放等功能。而是最常用的Create, read, update an...
阅读全文
posted @ 2010-06-29 05:29
一粒沙
阅读(282)
推荐(0)
编辑
2010年6月18日
摘要:
方法1:Html文件 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-...
阅读全文
posted @ 2010-06-18 16:00
一粒沙
阅读(1704)
推荐(0)
编辑
摘要:
111.用匹配的元素替换掉所有 selector匹配到的元素。$("<b>Paragraph. </b>").replaceAll("p"); 112.将所有匹配的元素替换成指定的HTML或DOM元素。$("p").replaceWith("<b>Paragraph. </b>"); 113.删除匹配的元素集合中所有的子节点。$("p").empty...
阅读全文
posted @ 2010-06-18 15:34
一粒沙
阅读(206)
推荐(0)
编辑
摘要:
86.把与表达式匹配的元素添加到jQuery对象中。这个函数可以用于连接分别与两个表达式匹配的元素结果集。$("p").add("span');$("p").add("<span>Ajax</span>");87.取得一个包含匹配的元素集合中每一个元素的所有子元素的元素集合。可以通过可选的表达式来过滤所匹配的子元素。注意:parents()将查找所有祖辈元素,而childr...
阅读全文
posted @ 2010-06-18 15:33
一粒沙
阅读(195)
推荐(0)
编辑
摘要:
63.为所有匹配的元素设置一个计算的属性值$(img).attr("title",function(){return this.src});64.为所有匹配的元素设置一个属性值$("img").attr("src","test.jpg");65.取得第一个匹配元素的属性值。通过这个方法可以方便地从第一个匹配元素中获取一个属性的值。如果元素没有相应属性,则返回undefined$("img").at...
阅读全文
posted @ 2010-06-18 15:32
一粒沙
阅读(199)
推荐(0)
编辑
摘要:
38.匹配给定的属性是否包含某些值的元素$("input[name*='person']"); //表达式在find选择器中也能使用39.匹配给定的属性不包含某个特定值的元素$("input[name!='news']").attr("checked",true);40.匹配给定的属性是以某些值结尾的元素$("input[name$='car']");41.匹配给定的属性是某个特定值的元素$("i...
阅读全文
posted @ 2010-06-18 15:31
一粒沙
阅读(186)
推荐(0)
编辑
摘要:
1.返回指定html的值 $("#msg").html(); //取值,相当于get方法 $("#msg").html("hello"); //赋值,相当于set方法2.$.get("search.do",{id:1},rend); function rend(xml){ alert(xml); } $("#msg").ajaxStart(function(){ this.html("正在加载。。...
阅读全文
posted @ 2010-06-18 15:30
一粒沙
阅读(259)
推荐(0)
编辑
摘要:
xml文件各个层次的节点名称都一样,所以不能使用DataSet.ReadXml来加载,必须使用XmlDocument对象: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<?xmlversion='1.0'encoding='UTF-8'?...
阅读全文
posted @ 2010-06-18 14:45
一粒沙
阅读(3612)
推荐(0)
编辑
摘要:
JQuery版本:jquery-1.4.2.min.js需要通过IIS才能正确运行DEMO.html代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<htmlxmlns="http://www.w3.org/1999/xhtml">&...
阅读全文
posted @ 2010-06-18 11:41
一粒沙
阅读(2223)
推荐(0)
编辑
2010年6月8日
摘要:
[代码]然后就可以像这样使用了:[代码]有一个奇怪的问题:代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--Ext.form.FormPanelExtend=Ext.extend(Ext.form.TriggerField,{initCompone...
阅读全文
posted @ 2010-06-08 18:07
一粒沙
阅读(373)
推荐(0)
编辑
摘要:
1.ExtJs中的Combos控件,定义数据源store的时候可以采用下面的方式:代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--varstore=newExt.data.SimpleStore({//定义组合框中显示的数据源//fields:[...
阅读全文
posted @ 2010-06-08 18:00
一粒沙
阅读(2915)
推荐(0)
编辑
2010年5月18日
摘要:
一般最常搭配 XML 用來查詢資料的技術是 XPath 。不過 .Net 僅支援到 XPath 1.0 ,有時想在 XPath 中加上日期函式的判斷都不行。 再加上若使用了 XPath 的函式或一些判斷式後,整個 XmlDocument 的查詢效能會變慢。(參考以下的例子)本文章所使用的 XML 內容 (ad.xml :紀錄一些廣告圖與連結):view source print?01<?xm...
阅读全文
posted @ 2010-05-18 17:13
一粒沙
阅读(722)
推荐(1)
编辑
摘要:
从根节点一直下来的相对路径才能确定Xpath的写法。/root/<节点1>/<节点2>//<@属性>Xpath是功能很强大的,但是也是相对比较复杂的一门技术,最好还是到博客园上面去专门找一些专业的帖子来看一看,下面是一些简单的Xpath语法和一个实例,提供给你参考一下<?xml version="1.0" encoding="ISO-8859-1"?>...
阅读全文
posted @ 2010-05-18 17:11
一粒沙
阅读(1926)
推荐(1)
编辑
摘要:
如题 <News> <NewsCols> <Title></Title> <Content></Content> </NewsCols> </News> 上面表现为字符串,怎样加载到DataSet中 ------------------------------------------------...
阅读全文
posted @ 2010-05-18 17:08
一粒沙
阅读(324)
推荐(0)
编辑
摘要:
本文演示如何使用 XPathNavigator 类通过 XML 路径语言 (XPath) 表达式查询 XPathDocument 对象。XPath 用于以编程方式计算表达式并选择文档中的特定节点。 回到顶端 要求下面的列表列出了推荐使用的硬件、软件、网络基础结构以及所需的服务包: Visual C# .NET 本文假定您熟悉下列主题: XML 术语 创建和读取 XML 文件 XPath 语法...
阅读全文
posted @ 2010-05-18 09:55
一粒沙
阅读(487)
推荐(0)
编辑
2010年5月14日
摘要:
InfoPath表单放在我们自己的Web部件页或者自定义的页面中也就是在Web部件页中或者自定义页面中嵌入Infopath表单。一、XMLFormView的基础知识:在MOSS中一般的都是通过FormServer在单独的一个MOss页面中查看和填写InfoPath表单。如果我们要把InfoPath表单放在我们自己的Web部件页或者自定义的页面中的时候就需要有表单装载的容器。XMLFormView控...
阅读全文
posted @ 2010-05-14 11:15
一粒沙
阅读(509)
推荐(0)
编辑
摘要:
转:http://msdn2.microsoft.com/en-us/library/ms788206.aspxSummary: Learn how to write a custom Microsoft ActiveX control that meets all requirements for use in InfoPath and learn how to deploy the contr...
阅读全文
posted @ 2010-05-14 11:08
一粒沙
阅读(394)
推荐(0)
编辑
摘要:
We have seen a number of requests on how to allow a user to enter (or select) a person’s name or logon alias and then validate that user against their Active Directory without using code. This h...
阅读全文
posted @ 2010-05-14 11:06
一粒沙
阅读(307)
推荐(0)
编辑
摘要:
Speaking of Outlook integration, Microsoft Office 2007 includes a new control that enables you to choose one or more e-mail address from the address book. You can add this control to InfoPath’s ...
阅读全文
posted @ 2010-05-14 11:06
一粒沙
阅读(227)
推荐(0)
编辑
摘要:
Custom Control support in InfoPath (Part I - Simple Binding)Published 07 July 04 11:32 AM | ajma Over the last year and a half, the InfoPath team has been working on the SP1 release. If anyone's seen ...
阅读全文
posted @ 2010-05-14 11:05
一粒沙
阅读(345)
推荐(0)
编辑
摘要:
From: http://blogs.msdn.com/infopath/archive/2004/04/09/110504.aspxExtending the InfoPath control set with custom controlsInfoPath provides a rich and complete set of generic built-in controls in both...
阅读全文
posted @ 2010-05-14 11:04
一粒沙
阅读(230)
推荐(0)
编辑
摘要:
InfoPath has a really powerful feature to allow users to create their own custom controls for InfoPath forms using Microsoft's ActiveX technology. One requirement that is essential for controls to wor...
阅读全文
posted @ 2010-05-14 11:04
一粒沙
阅读(236)
推荐(0)
编辑
摘要:
来自:微软表单中可以承载 ActiveX 控件。这些控件可以是现成的(具有某些约束),也可以针对 InfoPath 专门编写这些控件。编写 ActiveX 控件像 InfoPath 中的其他控件一样,ActiveX 控件应该支持现有的组件对象模型 (COM) 接口:IDispatchIPersistPropertyBagIPersistStreamInitIPropertyPageIObjectS...
阅读全文
posted @ 2010-05-14 11:03
一粒沙
阅读(312)
推荐(0)
编辑
摘要:
from: 微软操作方法:创建 COM 加载项以将自定义功能添加到 InfoPathMicrosoft Office InfoPath 2007 支持用于扩展表单编辑用户体验的 COM 加载项。尽管这是 Office InfoPath 2007 的新功能,但其他 Office 应用程序(如 Microsoft Office Word 和 Microsoft Office Excel)从 Offic...
阅读全文
posted @ 2010-05-14 11:02
一粒沙
阅读(361)
推荐(0)
编辑
摘要:
A frequent question from InfoPath users is “How can I pass parameters to a newInfoPath form when it is created?”Unfortunately, there’s no built-in functionality for passing command-l...
阅读全文
posted @ 2010-05-14 11:01
一粒沙
阅读(223)
推荐(0)
编辑
摘要:
转自:http://www.mcse.ms/message1299834.html&highlight=InfopathControl.savestateI've been recently dealing with this same issue and here's the resolutionI've come to:1. You can ONLY use Integers, Lon...
阅读全文
posted @ 2010-05-14 11:00
一粒沙
阅读(209)
推荐(0)
编辑
摘要:
初次接触Infopath,我就被它的强大的功能,灵活的表单制作方式,全面对Web Services的支持等特点深深的吸引了。曾经尝试用Infopath来完成一些MIS项目,Infopath却有一些我们难以逾越的障碍,使得无法方便的和项目紧密结合。主要是有以下几个方面使得Infopath不能和项目有效的结合: Infopath只能在Infopath本身的程序中填写表单(这个问题去年我曾经解决过,参考...
阅读全文
posted @ 2010-05-14 10:42
一粒沙
阅读(361)
推荐(0)
编辑
摘要:
One of the problems with InfoPath controls is their limited availability. For example, there is no such control like the NumericUpDown control in WinForms. Or you may have a predefined complex UI, whi...
阅读全文
posted @ 2010-05-14 10:29
一粒沙
阅读(332)
推荐(0)
编辑
摘要:
转:http://blogs.msdn.com/infopath/archive/2005/04/15/creating-an-infopath-custom-control-using-c-and-net.aspx In Office 2003 Service Pack 1 (SP1), new features and the InfoPathControl and InfoPathContr...
阅读全文
posted @ 2010-05-14 10:28
一粒沙
阅读(1343)
推荐(0)
编辑