91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

主要實現企業售后服務信息的維護(增加、刪除、修改等)操作,可維護的信息包括產品安裝、維修、退換、回訪、投訴等一系列活動中需要商家積極投入并及時記錄的信息

資源截圖

代碼片段和文件信息

package?com.action;

/**
?*?
?*?留言本
?*/

import?java.io.IOException;
import?java.util.List;

import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?javax.servlet.http.HttpSession;

import?com.bean.GuestBookBean;
import?com.bean.SystemBean;
import?com.util.Constant;
import?com.util.Filter;

public?class?GuestBookServlet?extends?HttpServlet?{

/**
?*?Constructor?of?the?object.
?*/
public?GuestBookServlet()?{
super();
}

/**
?*?Destruction?of?the?servlet.?

?*/
public?void?destroy()?{
super.destroy();?//?Just?puts?“destroy“?string?in?log
//?Put?your?code?here
}

/**
?*?The?doGet?method?of?the?servlet.?

?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{

doPost(requestresponse);
}

/**
?*?The?doPost?method?of?the?servlet.?

?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?post.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{

request.setCharacterEncoding(Constant.CHARACTERENCODING);
response.setContentType(Constant.CONTENTTYPE);
//nikename?pic?email?qq?weburl?blogurl?expressions?content
String?sysdir?=?new?SystemBean().getDir();
HttpSession?session?=?request.getSession();
String?method?=?request.getParameter(“method“).trim();
GuestBookBean?guestBookBean?=?new?GuestBookBean();
if(method.equals(“add“)){//發表留言
String?member=(String)session.getAttribute(“member“);
String?nikename?=?Filter.escapeHTMLTags(request.getParameter(“nikename“).trim());
String?face?=“images/nobody.gif“;
String?email?=?Filter.escapeHTMLTags(request.getParameter(“email“).trim());
String?qq?=?Filter.escapeHTMLTags(request.getParameter(“qq“).trim());
String?weburl?=?Filter.escapeHTMLTags(request.getParameter(“weburl“).trim());
String?blogurl?=?Filter.escapeHTMLTags(request.getParameter(“blogurl“).trim());
String?expressions?=?“images/face/“+Filter.escapeHTMLTags(request.getParameter(“face“).trim())+“.gif“;
String?content?=?Filter.escapeHTMLTags(request.getParameter(“content“).trim());
String?ip?=?request.getRemoteAddr();
?
int?guestbook=1;
int?flag?=?guestBoo

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2015-03-11?19:04??335JSP售后管理系統\
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\
?????文件?????????667??2010-05-21?16:44??335JSP售后管理系統\shffjsp\.classpath
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\.myeclipse\
?????文件?????????563??2010-05-20?23:35??335JSP售后管理系統\shffjsp\.myhibernatedata
?????文件?????????294??2010-05-21?16:44??335JSP售后管理系統\shffjsp\.mymetadata
?????文件????????1635??2010-05-20?23:34??335JSP售后管理系統\shffjsp\.project
?????文件?????????273??2010-05-20?23:35??335JSP售后管理系統\shffjsp\.springBeans
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\src\
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\src\com\
?????目錄???????????0??2015-03-11?14:37??335JSP售后管理系統\shffjsp\src\com\action\
?????文件????????6988??2009-04-28?11:07??335JSP售后管理系統\shffjsp\src\com\action\GuestBookServlet.java
?????目錄???????????0??2015-03-11?14:38??335JSP售后管理系統\shffjsp\src\com\bean\
?????目錄???????????0??2015-03-11?14:38??335JSP售后管理系統\shffjsp\src\com\util\
?????文件????????2665??2010-05-20?22:18??335JSP售后管理系統\shffjsp\src\com\util\DBO.java
?????文件?????????650??2009-04-26?00:42??335JSP售后管理系統\shffjsp\src\com\util\Filter.java
?????文件?????????792??2009-04-26?00:42??335JSP售后管理系統\shffjsp\src\com\util\MD5.java
?????目錄???????????0??2015-03-11?15:11??335JSP售后管理系統\shffjsp\WebRoot\
?????目錄???????????0??2015-03-11?14:38??335JSP售后管理系統\shffjsp\WebRoot\admin\
?????文件????????1440??2010-05-16?17:09??335JSP售后管理系統\shffjsp\WebRoot\admin\center.jsp
?????文件????????1095??2010-05-16?17:18??335JSP售后管理系統\shffjsp\WebRoot\admin\down.jsp
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\WebRoot\admin\hui\
?????文件????????4132??2009-04-30?22:28??335JSP售后管理系統\shffjsp\WebRoot\admin\hui\add.jsp
?????文件????????7692??2009-04-30?22:30??335JSP售后管理系統\shffjsp\WebRoot\admin\hui\index.jsp
?????文件????????2361??2009-04-30?22:29??335JSP售后管理系統\shffjsp\WebRoot\admin\hui\s.jsp
?????文件????????3248??2009-04-30?22:29??335JSP售后管理系統\shffjsp\WebRoot\admin\hui\sinfo.jsp
?????目錄???????????0??2015-03-11?14:35??335JSP售后管理系統\shffjsp\WebRoot\admin\iframe\
?????文件????????2301??2009-04-26?00:42??335JSP售后管理系統\shffjsp\WebRoot\admin\iframe\foot.jsp
?????文件????????1227??2009-04-26?00:42??335JSP售后管理系統\shffjsp\WebRoot\admin\iframe\help.jsp
?????文件????????9337??2009-04-30?22:48??335JSP售后管理系統\shffjsp\WebRoot\admin\iframe\left.jsp
?????文件????????3857??2009-04-30?19:23??335JSP售后管理系統\shffjsp\WebRoot\admin\iframe\main.jsp
............此處省略337個文件信息

評論

共有 條評論