GroupChatVote.jsp
742 Bytes
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/page/maint/common/initNoCache.jsp" %>
<%@page import="weaver.file.FileUpload"%>
<%@page import="weaver.general.BaseBean"%>
<%@page import="weaver.security.util.*"%>
<%
String params = "?" + request.getQueryString();
String ismobile = Util.null2String(request.getParameter("em_client_type"));
new BaseBean().writeLog("==============ismobile"+ismobile);
String url = "";
if(!"pc".equals(ismobile)){
response.sendRedirect("/spa/groupvote/static4mobile/index.html" + SecurityMethodUtil.textXssClean(params));
}else {
response.sendRedirect("/spa/smallApp/static/index.html#/main/groupVoting/groupVotingList" + SecurityMethodUtil.textXssClean(params));
}
%>