Hola tengo un problema!!!
Quiero subir notas y que cada nota aparesca en su renglon que actualizo en la tabla , pero mientras actualizo me muestra la nota que esta en orden ascendente en la base de datos
muestro captura de pantalla en el siguiente link con el problema:
http://www.subirimagenes.com/privadas-muestra-1048623.html][IMG]http://s3.subirimagenes.com:81/privadas/previo/thump_1048623muestra.jpg
Lo que quiero es q me muestre que cada nota me de el comentario del renglon donde lo ponga el usuario
en la base de datos si me la muestra bien imagen de muestra:
http://www.subirimagenes.com/privadas-base-1048642.html][IMG]http://s3.subirimagenes.com:81/privadas/previo/thump_1048642base.jpg

pero en la pagina no esta es la consulta general de mi proyecto dond mando a traer cada columna de la base:
Código ASP:
Ver originalSQL_must="select * from mustXproy mp inner join MUSTcerebro mc on mp.idmust=mc.id and mp.idproy='"&id_pry&"' left join etapas e on mc.etapa=e.etapa left join Proy_usuarios pu on mp.idUsuario=pu.id_usu order by e.id"
'response.Write(SQL_must&"<br />")
set rs_must=prycxn.execute(SQL_must)
if isnull(rs_must) or rs_must.eof then
tipo=request.QueryString("tipo")
capital=request.QueryString("capital")
if capital=1 then
capital=9
end if
if capital=2 then
capital=10
end if
if capital=3 then
capital=11
end if
if capital=11 then
SQL="SELECT * FROM MUSTcerebro WHERE tipoproy='"&tipo&"' "
set rs= prycxn.execute(SQL)
else
SQL="SELECT * FROM MUSTcerebro WHERE tipoproy='"&tipo&"' OR tipoproy='"&capital&"' "
set rs= prycxn.execute(SQL)
end if
do while not rs.eof
SQL_must="INSERT INTO mustXproy (idmust,idproy) VALUES ('"&rs("id")&"','"&id_pry&"') "
set rs_must= prycxn.execute(SQL_must)
'response.Write(a&".- "&rs("id")&" - "&id&"<br>")
rs.movenext
loop
y aqui es cuando la mando llamar traer a mi columna "nota":
Código ASP:
Ver original<%
nota=rs_must("nota")
if notaT="" then
notaT=replace(nota,vbCrLf,"<br>")
end if
%>