2015年10月19日

配置Web Deploy的经验之谈

摘要: 对于基于微软技术开发的技术人员,都会遇到如何把自己开发的程序发布到服务器上,例如:阿里云,腾讯云等公有云上,虽然这部分功能很多都有专业的部署工程师完成,可是我觉得一个搞技术的连网站都发布上去似乎有点说不过去,故在此记录我之前部署网站时遇到的一些问题及部署的一些流程简单介绍。废话不多说,入正题。如果你... 阅读全文

posted @ 2015-10-19 17:21 _Jacob 阅读(452) 评论(0) 推荐(0) 编辑

2013年3月13日

Difference between User Controls and Custom server control

摘要: Difference between User Controls and Custom server control【转载】User control1.Compiled at runtime2.HTML design (Visual design possible)3.ASP.Net page model with code behind4.Needs ASP.NET .aspx page to exist (can be used)5.No design time interface(Only a box representing the user control is available 阅读全文

posted @ 2013-03-13 13:31 _Jacob 阅读(184) 评论(0) 推荐(0) 编辑

2013年1月24日

MyEclipse注册码在线生成

摘要: 在线生成注册码的网址:http://www.lephones.info/servlet/MyEclipseGenServlet给有需要的兄弟们准备的,收下吧 阅读全文

posted @ 2013-01-24 09:44 _Jacob 阅读(907) 评论(0) 推荐(0) 编辑

2013年1月9日

Python学习记录

摘要: Python 中对类型的判断有三种形式:if type(L) == type([]): ...if type(L) == list: ...i isinstance(L,list): ... (但是通常在用python编程时不应该出现这种类型判断,即使python支持它,因为它会使程序变得不灵活,非python编程之道。更多的情况是直接面对Object接口,多态往往是最佳的选择。)虽然通常被称为脚本语言,但是Python却并不真的只是“脚本语言”那么简单,它是一门强大的程序设计语言,几乎可以满足你大多数的项目需求。"Object"是它的一个非常强大的特征,但同时也是可选的一 阅读全文

posted @ 2013-01-09 13:27 _Jacob 阅读(151) 评论(0) 推荐(0) 编辑

2012年12月25日

扩展内容查询WebPart的XSLT函数

摘要: 【注:摘自Waldek Mastykarz的博客】Earlier this month I wrote that SharePoint developers working with the Content Query Web Part (CQWP) are provided a mechanism to extend the information available in the XSLT transformations. While exploring the CQWP even further I found out that you could create custom XSLT 阅读全文

posted @ 2012-12-25 10:59 _Jacob 阅读(162) 评论(0) 推荐(0) 编辑

2012年11月26日

SharePoint开发记录

摘要: 1.一个正式发布的网站不要使用超过一个模板页.2.尽量使用CSS去控制页面的布局,而不是使用Layout3.通过xstl改写ContentQueryMain.xsl 可以适当的控制CQWP输出的HTML代码,如果你想去掉外层的Table:<table class="s4-wpTopTable"><table>,这里有一篇老外写的文章可以帮助你: URL:https://www.nothingbutsharepoint.com/sites/eusp/Pages/Customizing-the-HTML-code-of-a-Content-Query-W 阅读全文

posted @ 2012-11-26 21:16 _Jacob 阅读(163) 评论(0) 推荐(0) 编辑

2012年9月6日

关于快速开发J2EE的技术选型

摘要: Presentation layer:1.spring3 MVC + annotation2.jQuery3.EL+JSTL+JSP4.displaytag : a good util to display tables in the back sideController:1.spring3Persistence layer:1.hibernate3search engine:1.Lucene2.IKAnalyzerTemplate engine:apache tiles 2.22Application Server:TomcatWebApplication Server:Apache Ht 阅读全文

posted @ 2012-09-06 14:46 _Jacob 阅读(141) 评论(0) 推荐(0) 编辑

导航