%@ page language = "java" import = "java.io.*, java.util.*, java.lang.Object.*, java.net.*, java.sql.*, javax.mail.*, javax.mail.internet.*" contentType = "text/html" %> <% /* ############################################################ Desenvolvedor: MBifano Data:04/12/2001 Nome: ClicStation ############################################################ */ response.setHeader("Cache-Control","no-store"); response.setHeader("Pragma","no-cache"); response.setDateHeader("Expires",0); %> <% // Declaraçãod e variaveis globais String nomeVideo=null, uf=null, canal=null, nomePlayer=null; boolean nomeVideoNull = false; try { // Recebe por post as varáveis do video uf = request.getParameter("uf"); canal = request.getParameter("canal"); nomePlayer = request.getParameter("nomePlayer"); nomeVideo = request.getParameter("nomeVideo"); //out.println("canal: "+ canal); if (uf == null || uf.trim().equals("")) { uf = "NA"; } if (nomeVideo == null || nomeVideo.trim().equals("") ) { nomeVideo = "null"; } if (!nomeVideo.equals("null") ) { nomeVideoNull = true; } if (canal == null) { canal = "null"; } if (nomePlayer == null) { nomePlayer = "null"; } } catch (Exception e) {/*out.println(" " + e + "");*/} %>