<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% set conexao=server.createobject ("ADODB.Connection") conexao.Open MM_simuladoronline9_STRING %> <% Dim tabelas_promocoes__MMColParam tabelas_promocoes__MMColParam = "1" If (Request.QueryString("ID_Cliente") <> "") Then tabelas_promocoes__MMColParam = Request.QueryString("ID_Cliente") End If %> <% Dim tabelas_promocoes Dim tabelas_promocoes_cmd Dim tabelas_promocoes_numRows Set tabelas_promocoes_cmd = Server.CreateObject ("ADODB.Command") tabelas_promocoes_cmd.ActiveConnection = conexao tabelas_promocoes_cmd.CommandText = "SELECT * FROM tabelas_promocoes WHERE ID_Cliente = ?" tabelas_promocoes_cmd.Prepared = true tabelas_promocoes_cmd.Parameters.Append tabelas_promocoes_cmd.CreateParameter("param1", 5, 1, -1, tabelas_promocoes__MMColParam) ' adDouble Set tabelas_promocoes = tabelas_promocoes_cmd.Execute tabelas_promocoes_numRows = 0 %> <% Dim autenticar_logo__MMColParam autenticar_logo__MMColParam = "1" If (Request.QueryString("ID_Usuario") <> "") Then autenticar_logo__MMColParam = Request.QueryString("ID_Usuario") End If %> <% Dim autenticar_logo__corretora autenticar_logo__corretora = "1" If (Request.QueryString("ID_Cliente") <> "") Then autenticar_logo__corretora = Request.QueryString("ID_Cliente") End If %> <% set autenticar_logo = Server.CreateObject("ADODB.Recordset") autenticar_logo.ActiveConnection = conexao autenticar_logo.Source = "SELECT * FROM usuarios_adicionais, administrador WHERE ID_Usuario = " + Replace(autenticar_logo__MMColParam, "'", "''") + " AND ID_Cliente = " + Replace(autenticar_logo__corretora, "'", "''") + " AND ativo = 'S'" autenticar_logo.CursorType = 0 autenticar_logo.CursorLocation = 2 autenticar_logo.LockType = 3 autenticar_logo.Open() autenticar_logo_numRows = 0 %> <% Dim notas_pessoais__MMColParam notas_pessoais__MMColParam = "1" If (Request.QueryString("ID_Usuario") <> "") Then notas_pessoais__MMColParam = Request.QueryString("ID_Usuario") End If %> <% Dim notas_pessoais Dim notas_pessoais_numRows Set notas_pessoais = Server.CreateObject("ADODB.Recordset") notas_pessoais.ActiveConnection = conexao notas_pessoais.Source = "SELECT * FROM informacoes_fisica WHERE ID_Cliente = " + Replace(notas_pessoais__MMColParam, "'", "''") + " AND ID_Operadora = 84" notas_pessoais.CursorType = 0 notas_pessoais.CursorLocation = 2 notas_pessoais.LockType = 1 notas_pessoais.Open() notas_pessoais_numRows = 0 %> <% Dim intermedica_fam Dim intermedica_fam_numRows Set intermedica_fam = Server.CreateObject("ADODB.Recordset") intermedica_fam.ActiveConnection = conexao intermedica_fam.Source = "SELECT * FROM intermedica_fam" intermedica_fam.CursorType = 0 intermedica_fam.CursorLocation = 2 intermedica_fam.LockType = 1 intermedica_fam.Open() intermedica_fam_numRows = 0 %> <% Dim intermedica Dim intermedica_numRows Set intermedica = Server.CreateObject("ADODB.Recordset") intermedica.ActiveConnection = conexao intermedica.Source = "SELECT * FROM intermedica_ind" intermedica.CursorType = 0 intermedica.CursorLocation = 2 intermedica.LockType = 1 intermedica.Open() intermedica_numRows = 0 %> <% Dim categorias_sp Dim categorias_sp_numRows Set categorias_sp = Server.CreateObject("ADODB.Recordset") categorias_sp.ActiveConnection = conexao categorias_sp.Source = "SELECT * FROM intermedica_inform_ind" categorias_sp.CursorType = 0 categorias_sp.CursorLocation = 2 categorias_sp.LockType = 1 categorias_sp.Open() categorias_sp_numRows = 0 %> <% Dim intermedica_ind_d1 Dim intermedica_ind_d1_cmd Dim intermedica_ind_d1_numRows Set intermedica_ind_d1_cmd = Server.CreateObject ("ADODB.Command") intermedica_ind_d1_cmd.ActiveConnection = conexao intermedica_ind_d1_cmd.CommandText = "SELECT * FROM intermedica_ind_regioes ORDER BY faixa ASC" intermedica_ind_d1_cmd.Prepared = true Set intermedica_ind_d1 = intermedica_ind_d1_cmd.Execute intermedica_ind_d1_numRows = 0 %> <% Dim intermedica_fam_d1 Dim intermedica_fam_d1_cmd Dim intermedica_fam_d1_numRows Set intermedica_fam_d1_cmd = Server.CreateObject ("ADODB.Command") intermedica_fam_d1_cmd.ActiveConnection = conexao intermedica_fam_d1_cmd.CommandText = "SELECT * FROM intermedica_fam_regioes ORDER BY faixa ASC" intermedica_fam_d1_cmd.Prepared = true Set intermedica_fam_d1 = intermedica_fam_d1_cmd.Execute intermedica_fam_d1_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = -1 Repeat1__index = 0 intermedica_fam_numRows = intermedica_fam_numRows + Repeat1__numRows %> <% Dim Repeat3__numRows Dim Repeat3__index Repeat3__numRows = -1 Repeat3__index = 0 intermedica_fam_d1_numRows = intermedica_fam_d1_numRows + Repeat3__numRows %> <% Dim Repeat4__numRows Dim Repeat4__index Repeat4__numRows = -1 Repeat4__index = 0 intermedica_ind_d1_numRows = intermedica_ind_d1_numRows + Repeat4__numRows %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = -1 Repeat2__index = 0 intermedica_numRows = intermedica_numRows + Repeat2__numRows %> <% Dim MM_paramName %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <%=(autenticar_logo.Fields.Item("nome_corretora").Value)%> <% If Not topo_tabelas.EOF Or Not topo_tabelas.BOF Then %>
<% If Not tabelas_promocoes.EOF Or Not tabelas_promocoes.BOF Then %>
<%=(tabelas_promocoes.Fields.Item("descricao_fisica").Value)%>
<% End If ' end Not tabelas_promocoes.EOF Or NOT tabelas_promocoes.BOF %>
" border="0">
<%=(autenticar_logo.Fields.Item("site_corretora").Value)%>
(<%=(autenticar_logo.Fields.Item("ddd").Value)%>) <%=(autenticar_logo.Fields.Item("fone").Value)%> -<%=(autenticar_logo.Fields.Item("fone_2").Value)%>


<% End If ' end Not topo_tabelas.EOF Or NOT topo_tabelas.BOF %>
INTERMÉDICA - FISICA MAX - SETEMBRO 2010 - Taxa de Inscrição R$ 15,00
TABELA INDIVIDUAL - Abrangência geográfica São Paulo, Grande São Paulo, ABC e Baixada (A1 + A2)
<% While ((Repeat2__numRows <> 0) AND (NOT intermedica.EOF)) %> <% Repeat2__index=Repeat2__index+1 Repeat2__numRows=Repeat2__numRows-1 intermedica.MoveNext() Wend %>
Faixa Etária
<%=(categorias_sp.Fields.Item("categoria1").Value)%>
<%=(categorias_sp.Fields.Item("categoria2").Value)%>
<%=(categorias_sp.Fields.Item("categoria3").Value)%>
<%=(categorias_sp.Fields.Item("categoria4").Value)%>
<%=(categorias_sp.Fields.Item("categoria5").Value)%>
<%=(categorias_sp.Fields.Item("categoria6").Value)%>
<%=(categorias_sp.Fields.Item("categoria7").Value)%>
<%=(categorias_sp.Fields.Item("categoria8").Value)%>
<%=(intermedica.Fields.Item("idade").Value)%>
<%= FormatNumber((intermedica.Fields.Item("valor").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_2").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_3").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_4").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_5").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_6").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_7").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica.Fields.Item("valor_8").Value), 2, -2, -2, -2) %>

TABELA FAMILIAR - Abrangencia geográfica Sao Paulo, Grande Sao Paulo, ABC e Baixada (A1 + A2)
<% While ((Repeat1__numRows <> 0) AND (NOT intermedica_fam.EOF)) %> <% Repeat1__index=Repeat1__index+1 Repeat1__numRows=Repeat1__numRows-1 intermedica_fam.MoveNext() Wend %>
Faixa Etária
<%=(categorias_sp.Fields.Item("categoria1").Value)%>
<%=(categorias_sp.Fields.Item("categoria2").Value)%>
<%=(categorias_sp.Fields.Item("categoria3").Value)%>
<%=(categorias_sp.Fields.Item("categoria4").Value)%>
<%=(categorias_sp.Fields.Item("categoria5").Value)%>
<%=(categorias_sp.Fields.Item("categoria6").Value)%>
<%=(categorias_sp.Fields.Item("categoria7").Value)%>
<%=(categorias_sp.Fields.Item("categoria8").Value)%>
<%=(intermedica_fam.Fields.Item("idade").Value)%>
<%= FormatNumber((intermedica_fam.Fields.Item("valor").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_2").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_3").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_4").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_5").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_6").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_7").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam.Fields.Item("valor_8").Value), 2, -2, -2, -2) %>

TABELA INDIVIDUAL - Abrangencia geográfica Sao Paulo, Grande Sao Paulo, ABC e Baixada Santista + Jundiaí e regiao + Sorocaba e regiao (D1)
<% While ((Repeat4__numRows <> 0) AND (NOT intermedica_ind_d1.EOF)) %> <% Repeat4__index=Repeat4__index+1 Repeat4__numRows=Repeat4__numRows-1 intermedica_ind_d1.MoveNext() Wend %>
Faixa Etária
<%=(categorias_sp.Fields.Item("categoria1").Value)%>
<%=(categorias_sp.Fields.Item("categoria2").Value)%>
<%=(categorias_sp.Fields.Item("categoria3").Value)%>
<%=(categorias_sp.Fields.Item("categoria4").Value)%>
<%=(categorias_sp.Fields.Item("categoria5").Value)%>
<%=(categorias_sp.Fields.Item("categoria6").Value)%>
<%=(categorias_sp.Fields.Item("categoria7").Value)%>
<%=(categorias_sp.Fields.Item("categoria8").Value)%>
<%=(intermedica_ind_d1.Fields.Item("idade").Value)%>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_2").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_3").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_4").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_5").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_6").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_7").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_ind_d1.Fields.Item("valor_8").Value), 2, -2, -2, -2) %>

TABELA FAMILIAR - Abrangencia geográfica Sao Paulo, Grande Sao Paulo, ABC e Baixada Santista + Jundiaí e regiao + Sorocaba e regiao
(D1)
<% While ((Repeat3__numRows <> 0) AND (NOT intermedica_fam_d1.EOF)) %> <% Repeat3__index=Repeat3__index+1 Repeat3__numRows=Repeat3__numRows-1 intermedica_fam_d1.MoveNext() Wend %>
Faixa Etária
<%=(categorias_sp.Fields.Item("categoria1").Value)%>
<%=(categorias_sp.Fields.Item("categoria2").Value)%>
<%=(categorias_sp.Fields.Item("categoria3").Value)%>
<%=(categorias_sp.Fields.Item("categoria4").Value)%>
<%=(categorias_sp.Fields.Item("categoria5").Value)%>
<%=(categorias_sp.Fields.Item("categoria6").Value)%>
<%=(categorias_sp.Fields.Item("categoria7").Value)%>
<%=(categorias_sp.Fields.Item("categoria8").Value)%>
<%=(intermedica_fam_d1.Fields.Item("idade").Value)%>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_2").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_3").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_4").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_5").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_6").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_7").Value), 2, -2, -2, -2) %>
<%= FormatNumber((intermedica_fam_d1.Fields.Item("valor_8").Value), 2, -2, -2, -2) %>


Última Alteração em 20/09/2010
<% intermedica_fam.Close() Set intermedica_fam = Nothing %> <% intermedica.Close() Set intermedica = Nothing %> <% categorias_sp.Close() Set categorias_sp = Nothing %> <% intermedica_ind_d1.Close() Set intermedica_ind_d1 = Nothing %> <% intermedica_fam_d1.Close() Set intermedica_fam_d1 = Nothing %> <% notas_pessoais.Close() Set notas_pessoais = Nothing %> <% tabelas_promocoes.Close() Set tabelas_promocoes = Nothing %> <% autenticar_logo.Close() Set autenticar_logo = Nothing %> <% conexao.close set conexao=nothing %>