Jump to content
Fórum Script Brasil
  • 0

Next Inesperado


Guest Jomar

Question

Estou com problemas por favor me ajudem!!

ERRO:

Erro de compilação do Microsoft VBScript error '800a041f'

'Next' inesperado

/editora/web/carrinho_pedido.asp, line 62

next

^

meu código...

Onde devo arrumar

<!--#include file=".../editora/web/inc/funcoes.asp"-->

<%

Sub Session_OnStart

if Session("Pedido").Count = 0 then

Response.Write "<p> Não há produtos em sua cesta <br><br>"

Response.Write "<a href=default.asp?pagina=" & request.Querystring("pagina") &"> Voltar </a>"

else

%>

<form action="atualizar_carrinho.asp" method="post">

<table border="1" align="center" width="80%">

<tr>

<th colspan="4"> Suas compras </th>

</tr>

<tr>

<td> Excluir </td>

<td> Quantidade </td>

<td> Obra </td>

<td> Valor Unitário </td>

</tr>

<% Mostra_Pedido() %>

<tr>

<td colspan="4">

<input type="submit" value="Atualizar">

<input type="submit" name="acao" value="Fechar Pedido">

</td>

</tr>

</table>

</form>

<%

end if

'<%=mostra_pedido()%>

function Mostra_Pedido()

total = 0

for each Produto in Session("Pedido")

vSQL = "SELECT * FROM Obra WHERE CodObra = " & Produto

Set rsObra = Server.CreateObject("ADODB.RecordSet")

rsObra.Open vSQL, Conexao

%>

<tr>

<td><input type="checkbox" name="exclui<%=Produto%>" value="1"></td>

<td><input type="text" size="2" name="quantidade<%=Produto%>" value="<%=Session("Pedido").Item(Produto)%>"></td>

<td><%=rsObra("Obra")%></td>

<td><%=FormatCurrency(rsObra("preço"))%></td>

</tr>

<%

if Session("Pedido").Item(Produto) > 1 then

total = total + Session("Pedido").Item(Produto) * rsObra("preço")

else

total = total + rsObra("preço")

end if

rsObra.Close

Set rsObra = Nothing

next

Response.Write "<tr>"

Response.Write "<td> &nbsp; </td>"

Response.Write "<td> Total: </td>"

Response.Write "<td colspan=3>" & FormatCurrency(Total) & "</td>"

Response.Write "</tr>"

Set Produto=Nothing

End Function

%>

OBRIGADO JOMAR

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...