2 Star 2 Fork 3

十四/WebViewerExample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CancelTask.jsp 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
十四 提交于 2016-10-29 18:06 . 3213213
<%-----------------------------------------------------------------------------
Copyright (c) 2004 Actuate Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Actuate Corporation - Initial implementation.
-----------------------------------------------------------------------------%>
<%@ page contentType="text/html; charset=utf-8" %>
<%@ page session="false" buffer="none" %>
<%@ page import="org.eclipse.birt.report.utility.BirtUtility,
org.eclipse.birt.report.IBirtConstants,
org.eclipse.birt.report.resource.BirtResources" %>
<%-----------------------------------------------------------------------------
Cancel Task
-----------------------------------------------------------------------------%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>
<%= BirtResources.getMessage( "birt.viewer.title.message" )%>
</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<LINK REL="stylesheet" HREF="<%= request.getContextPath( ) + "/webcontent/birt/styles/style.css" %>" TYPE="text/css">
</HEAD>
<%
String taskid = request.getParameter( IBirtConstants.OPRAND_TASKID );
try
{
BirtUtility.cancelTask( request, taskid );
}
catch( Exception e )
{
e.printStackTrace( );
}
%>
<BODY>
<TABLE CLASS="BirtViewer_Highlight_Label">
<TR>
<TD NOWRAP>
<%= BirtResources.getMessage( "birt.viewer.message.taskcanceled" )%>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitzero/WebViewerExample.git
git@gitee.com:gitzero/WebViewerExample.git
gitzero
WebViewerExample
WebViewerExample
master

搜索帮助