RSS订阅优然探索
你的位置:首页 » JAVA » 正文

CBasicService

选择字号: 超大 标准 发布时间:2013-3-29 14:17:47 | 作者:admin | 0个评论 | 人浏览

 package net.lisoft.service.servlet;

 
import java.io.IOException;
import java.io.PrintWriter;
 
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
public class CBasicService {
public static void LcMessage(HttpServletResponse response, String Message)
throws ServletException, IOException {
LcMessage(response, Message, "");
}
 
public static void LcMessage(HttpServletResponse response, String Message,
String URL) throws ServletException, IOException {
String sReturn = "";
sReturn = "<script language='javascript'>alert('" + Message
+ "');history.go(-1);</script>";
PrintWriter out = response.getWriter();
out.println(sReturn);
out.flush();
out.close();
}
}
 

标签:

猜你喜欢

发表评论

必填

选填

选填

必填,不填不让过哦,嘻嘻。

记住我,下次回复时不用重新输入个人信息

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。