Estou com uma dificuldade imensa de entender tudo isso. Estou vendo que algumas coisas estão saindo... Mas tem hora que na minha cabeça enrosca feio...
Deixa eu tentar explicar:
O cadastro foi feito com sucesso. Criei uma página para realizar a busca:
Pergunta
Prof_Marins
Olá pessoal,
Estou com uma dificuldade imensa de entender tudo isso. Estou vendo que algumas coisas estão saindo... Mas tem hora que na minha cabeça enrosca feio...
Deixa eu tentar explicar:
O cadastro foi feito com sucesso. Criei uma página para realizar a busca:
<!--#include file="conexao.asp"-->
<html>
<head>
<title>teste</title>
</head>
<body>
<td>
<center>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><!--#include file="cadastrar_aluno_turma.asp"--></td>
</tr>
</table>
</td>
<TABLE border="0" align="center" width="685" height="53">
<%
Dim cod_matricula, strQuery
cod_matricula = Request.Form("cod_matricula")
call abre_conexao
Set objRS = conexao.Execute("SELECT * FROM aluno WHERE cod_aluno LIKE '%" & cod_matricula & "%'")
If objRS.EOF Then
Response.Write "Não Achou Nada"
Else
End If
%>
<form method="form" action="altera_aluno.asp">
<tr><center>
<td align="center" bgcolor="#CCFFCC" width="90" height="26"><b>
<font face="Verdana" size="2">Matricula</font></b></td>
<td bgcolor="#CCFFCC" width="229" height="26"><b>
<font face="Verdana" size="2">Nome do aluno</font></b></td>
<td align="center" bgcolor="#CCFFCC" width="80" height="26"><b>
<font face="Verdana" size="2">Número</font></b></td>
<td align="center" bgcolor="#CCFFCC" width="65" height="26"><b>
<font face="Verdana" size="2">Turma</font></b></td>
<td align="center" bgcolor="#CCFFCC"><b>
<font face="Verdana" size="2">Curso</font></b></td>
<td align="center" bgcolor="#CCFFCC" width="187" height="26"><input type="submit" value="Alterar"></td>
<tr>
<TD align="center" width="90" height="19"><font face="Verdana" size="2"> <% response.write objRS("cod_aluno") %> </font> </td>
<TD width="229" height="19"><font face="Verdana" size="2"><% response.write objRS("nome_aluno") %> </font> </td>
<TD align="center" width="80" height="19"><font face="Verdana" size="2"><% response.write objRS("numero_aluno") %></font> </td>
<TD align="center" width="65" height="19"><font face="Verdana" size="2"><% response.write objRS("nome_turma") %></font> </td>
<TD width="187" height="19"><font face="Verdana" size="2"> <% response.write objRS("nome_curso") %></font> </td>
<TD align="center"><input type="radio" value="<%=objRS(0)%>" name="alterar"></font> </td>
</tr>
</TABLE>
</form>
<%
objRS.close
call fecha_conexao
Set objRS = nothing
Set conexao = Nothing
%>
</body>
</html>
Normal!
Adicionei o "RADIO" e o "INPUT" (alterar_aluno.asp)
Ai começa a "salada"!!!
Quando eu selecionar aquela opção (radio) e clicar no botão (input name="alterar") quero carregar aquelas váriaveis na outra página alterar_aluno.asp
<html>
<head>
<title>teste</title>
</head>
<body>
<form method="post" action="x.asp">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber1" width="232">
<tr>
<td width="75"><b><font face="Verdana" size="2">Matricula</font></b></td>
<td width="157" align="center"><input type="text" name="cod_aluno" size="20"></td>
</tr>
<tr>
<td width="75"><b><font face="Verdana" size="2">Nome</font></b></td>
<td width="157" align="center">
<input type="text" name="nome_aluno" size="20"></td>
</tr>
<tr>
<td width="75"><b><font face="Verdana" size="2">Numero</font></b></td>
<td width="157" align="center">
<input type="text" name="numero_aluno" size="20"></td>
</tr>
<tr>
<td width="75"><b><font face="Verdana" size="2">Turma</font></b></td>
<td width="157" align="center">
<input type="text" name="nome_turma" size="20"></td>
</tr>
<tr>
<td width="75"><b><font face="Verdana" size="2">Curso</font></b></td>
<td width="157" align="center"> <input type="text" name="nome_curso" size="20"></td>
</tr>
</table>
</center>
</div>
<p align="center"><input type="submit"></p>
</body>
</html>
Link para o comentário
Compartilhar em outros sites
8 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.