上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 118 下一页
摘要: The null keyword is a literal that represents a null reference,(Note:null reference)one that does not refer to any object.null is the default value of reference-type variables.Link:http://msdn.microsoft.com/en-us/library/edakx9da%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-23 12:41 daishuguang 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Deploy.batView Code 1 Powershell.exe -Command Set-ExecutionPolicy "Bypass"2 Powershell.exe -Command "& {%~dp0InstallMain.ps1}"3 PauseInstallMain.ps1View Code 1 function UpdateContentTypeChild($sitecollectionurl) 2 { 3 $sitecol=Get-SPSite $sitecollectionurl 4 $rootweb=$sitecol 阅读全文
posted @ 2013-04-23 10:45 daishuguang 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1 $splist.contenttypes["News"].fieldlinks.add($fieldlink)contenttypes中添加field的方法。下面这种则不起作用1 $splist.contenttypes["News"].fields.add($spfield)http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttype.fields.aspxhttp://hongzhguan.iteye.com/blog/1456881新建一个spfieldli 阅读全文
posted @ 2013-04-23 10:42 daishuguang 阅读(147) 评论(0) 推荐(0) 编辑
摘要: contentType.ReadOnly=[System.BooLean]::False------------起作用contentType.ReadOnly=[System.BooLean]::True-------------不起作用ContentType.ReadOnly=$true----------------------------------起作用ContentType.ReadOnly=$false---------------------------------不起作用 阅读全文
posted @ 2013-04-23 10:40 daishuguang 阅读(438) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttype.fields.aspx 阅读全文
posted @ 2013-04-22 17:53 daishuguang 阅读(128) 评论(0) 推荐(0) 编辑
摘要: so you use the same familiar .NET Framework and .NET languages, the same .NET Framework and ASP.NET class libraries, and the same development tools.the same .NET Framework and .NET languages,the same .NET Framework and ASP.NET class libraries, and the same development tools. 阅读全文
posted @ 2013-04-21 23:15 daishuguang 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 1 public bool SendMail() 2 { 3 MailMessage myEmail = new MailMessage(); 4 myEmail.From = new MailAddress(fromMail.Text.Trim()); 5 myEmail.To.Add(toMail.Text.Trim()); 6 myEmail.Subject = subject.Text.Trim(); 7 myEmail.IsBodyHtml = f... 阅读全文
posted @ 2013-04-21 19:30 daishuguang 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 怎么解决 阅读全文
posted @ 2013-04-21 19:06 daishuguang 阅读(150) 评论(0) 推荐(0) 编辑
摘要: View Code 1 <script type="text/javascript"> 2 function cleartext() { 3 for (i = 0; i < window.document.forms[0].elements.length; i++) { 4 if (window.document.forms[0].elements[i].type == "text") { 5 window.document.forms[0].elements[i].value =... 阅读全文
posted @ 2013-04-21 12:35 daishuguang 阅读(196) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/Hope94/article/details/4364471 阅读全文
posted @ 2013-04-21 02:32 daishuguang 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 为了清除textarea的值,无法用document.getElementByTagName("textarea").value获取textarea服务器控件的值,不起作用View Code 1 document.getElementsByTagName("textarea").value = "";http://hi.baidu.com/fish1nsky/item/1dec4f49f253cce71281da3a这样就有效了View Code 1 document.getElementById("<%= conta 阅读全文
posted @ 2013-04-21 02:03 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑
摘要: http://www.189works.com/article-40198-1.html 阅读全文
posted @ 2013-04-20 23:47 daishuguang 阅读(105) 评论(0) 推荐(0) 编辑
摘要: http://xinyaoxp.blog.163.com/blog/static/346773492010231101749762/http://www.jb51.net/web/42244.html 阅读全文
posted @ 2013-04-20 19:01 daishuguang 阅读(138) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/diguonianzhu/archive/2012/06/29/2569758.html 阅读全文
posted @ 2013-04-20 17:36 daishuguang 阅读(113) 评论(0) 推荐(0) 编辑
摘要: http://www.w3help.org/zh-cn/causes/RS8003 阅读全文
posted @ 2013-04-20 17:21 daishuguang 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 118 下一页