Jsp使用FCKEditor的一个例子
?
public ActionForward addWebPage(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception{ ActionForward forward = mapping.findForward("addPageSucc"); try{ WebPageForm pageForm = (WebPageForm)form; webPageService.addHtmlPage(pageForm); super.saveFailure(request,"文章添加成功!"); }catch(BusinessException be){ be.printStackTrace(); super.saveFailure(request,be.getMessage()); } return forward; }??