当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > jetspeed开发实战

ASP.NET
.Net中使用com组件后发生System.ArithmeticException异常的解决办法
SQL Server.net 和 OLE DB.net连接数据库的比较
后台更新DataTable行内容的方法
敏捷软件开发(原则,模式与实践)笔记1
确保文本框输入值为数值的代码
XML和数据库之间相互的映射
让你的.NET程序兼容不同版本的Dll文件。
.NET 的数据访问应用程序块(Data Access Application Block)
用控件仅一条指令实现界面换肤和多语言版本(YFSkins)
Microsoft User Interface Process Application Block 研究(3)
分享:处理Excel方法小结
基于ASP.NET实现全球化
.net 里面 protected private 的变量也可以访问(新发现)。
关于C#中{0}和{1}的问题初次在此发贴,问题对你易对我难,求救了
使用C#代码实现增加用户帐号
全世界都在关注-微软重大产品发布
教你做Rational Rose(UML Design)
OLE DB取得数据库的架构信息
VB 从零开始编外挂(三)
XPath序列之四

ASP.NET 中的 jetspeed开发实战


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 48 ::
收藏到网摘: n/a

这里假设monsys为web服务的名称,其路径在webapps/下面1,jetspeed的图片处理图片默认放在monsys/images下面,调用方法:$clink.setURI("images/test.jpg")2,javascript处理javascript黑认放在monsys/javascript下调用方法:$clink.setURI("javascript/test.css")3,portlets的位置位于monsys/WEB-INF/templates/vm/portlets/html下面4,页面总体布局控制看JetspeedResources.propertiesbottomnav.enable=truebottomnav.vm=bottom.vmleftnav.enable=trueleftnav.vm=left.vmleftnav.width=10%topnav.enable=truetopnav.vm=top.vmtopnav.logo.file=images/jetspeed-logo-1.5.giftopnav.logo.url=topnav.user_login.enable=truetopnav.user_creation.enable=truetopnav.my_pages.enable=true5,portlets源代码分析:portlet主要实现三个方法:,buildMaximizedContext最大化,buildConfigureContext显示信息,buildNormalContext正常情况,也就是所看到的正常显示时所要显示的信息,调用时,在添加模块时添加新参数action=portlets.GraphDailyActionpackage org.apache.jetspeed.modules.actions.portlets;import .............(N个,略)public class GraphDailyActionextends VelocityPortletAction {/*** Subclasses should override this method if they wish to* build specific content when maximized. Default behavior is* to do the same as normal content.*/protected void buildMaximizedContext(VelocityPortlet portlet,Context context,RunData rundata) {buildNormalContext(portlet, context, rundata);String text = (String) context.get("text");if (text == null) {text = "Top Record of baccarat game";}context.put("text", text + " (Maximized !)");}/*** Subclasses should override this method if they wish to* provide their own customization behavior.* Default is to use Portal base customizer action*/protected void buildConfigureContext(VelocityPortlet portlet,Context context,RunData rundata) {buildNormalContext(portlet, context, rundata);setTemplate(rundata, "hello-customize");}/*** 这是主要部份* Subclasses must override this method to provide default behavior* for the portlet action*/protected void buildNormalContext(VelocityPortlet portlet,Context context,RunData rundata) {String mode= portlet.getPortletConfig().getInitParameter("mode"); //读取添加模块时从配置文件传来的参数String searchdate = rundata.getParameters().getString("searchdate"); //取得从页面提交得到的参数context.put("mode",mode);context.put("searchdate",searchdate)//输出页面要显示的信息,支持输出数组,对像,及容器等形式的数据}}写好源代码,并编译,参考里的:  1,所建的参数action,其值为portlets.GraphDailyAction,则系统会去热行这个类