Problemas insertando en tablas con claves foráneas
Hola! Estamos trabajando en Dreamweaver Mx (ASP-VBsript), IIS, SQL server 7. Y tenemos una gran problemita cuando vamos a insertar en una tabla de la Base de Datos que contenga claves foráneas, de verdad ya hemos intentado las mil y una, y logramos que nos inserte, pero nunk nos muestra la página siguiente, simplemente dice no se puede mostrar la pag error 500 :-(
Por lo que te adjuntamos el código de muestas 2 pag (la HTM y la ASP), te agradecemos la ayuda que nos puedas prestar
IngresarDocumento.htm
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/conexion.asp" -->
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div id="Layer1" style="position:absolute; width:422px; height:214px; z-index:1; left: 26px; top: 10px;">
<form name="form1" method="POST" action="IngreDocu.asp">
<p>Nombre del Documento
<input type="text" name="text_nombre_documento">
</p>
<p>Ubicación del Documento
<input type="text" name="text_ubicacion_documento">
</p>
<p>
<input type="submit" name="Boton_aceptar" value="Aceptar">
<input type="submit" name="Boton_cancelar" value="Cancelar">
</p>
</form>
</div>
</body>
</html>
IngreDocu.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/conexion.asp" -->
<html>
<head>
<title>Configurar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%
Dim Nombre_doc, Ubicacion_doc, rs
Nombre_doc = request.form("text_nombre_documento")
Ubicacion_doc = request.form("text_ubicacion_documento")
Set rs = Server.CreateObject("ADODB.Recordset")
rs.ActiveConnection = MM_conexion_STRING
rs.Source = "INSERT INTO TBL_DOCUMENTO(DOCU_ID,DOCU_IDSUBA,DOCU_IDACTI,DOCU_NOMBRE,DOCU_UBICACION) VALUES ('54','2','1','"&Nombre_doc&"','"&Ubicacion_doc&"')"
rs.Open
rs.Close
Set rs = Nothing
%>
</body>
</html>
Por lo que te adjuntamos el código de muestas 2 pag (la HTM y la ASP), te agradecemos la ayuda que nos puedas prestar
IngresarDocumento.htm
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/conexion.asp" -->
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div id="Layer1" style="position:absolute; width:422px; height:214px; z-index:1; left: 26px; top: 10px;">
<form name="form1" method="POST" action="IngreDocu.asp">
<p>Nombre del Documento
<input type="text" name="text_nombre_documento">
</p>
<p>Ubicación del Documento
<input type="text" name="text_ubicacion_documento">
</p>
<p>
<input type="submit" name="Boton_aceptar" value="Aceptar">
<input type="submit" name="Boton_cancelar" value="Cancelar">
</p>
</form>
</div>
</body>
</html>
IngreDocu.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/conexion.asp" -->
<html>
<head>
<title>Configurar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%
Dim Nombre_doc, Ubicacion_doc, rs
Nombre_doc = request.form("text_nombre_documento")
Ubicacion_doc = request.form("text_ubicacion_documento")
Set rs = Server.CreateObject("ADODB.Recordset")
rs.ActiveConnection = MM_conexion_STRING
rs.Source = "INSERT INTO TBL_DOCUMENTO(DOCU_ID,DOCU_IDSUBA,DOCU_IDACTI,DOCU_NOMBRE,DOCU_UBICACION) VALUES ('54','2','1','"&Nombre_doc&"','"&Ubicacion_doc&"')"
rs.Open
rs.Close
Set rs = Nothing
%>
</body>
</html>
2 Respuestas
Respuesta de juanceer
1
Respuesta de pedroche
-1