Hola a todos les comento que empece a trabajar en asp.net y soy absolutamente nuevo jeje, resulta que necesito enviar un formulario html bien simple y recojer los datos en otra pagina, he visto miles de ejemplos y de hecho ya tengo mis 2 paginas listas el problema es que al enviar el formulario me sale un error....
Server Error in '/' Application
Compilation Error Description: Error compiling a resource required to service this request. Review your source file and modify it to fix this error.
Compiler Error Message: VBNC_CRASH:
/2.0/formweb/simple.aspx
Version information: Mono Runtime Version: 2.10.8 (tarball); ASP.NET Version: 2.0.50727.1433
Estoy usando el programa Mono para emular el servidor virtual les dejo el codigo de mis 2 paginas, tampoco sabria bien como crear la pagina donde recibo los datos, en dreamweaver me da las opciones:
ASP Javascript
ASP VBScript
ASP.NET #C
ASP.NET VB.
Les dejo mis codigos:
index.html
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<form method="POST" action="simple.aspx"> Name:
<input type="text" name="Name" size="20"><br> Address:
<input type="text" name="Address" size="20"><br> <input type="submit" value="Submit" name="B1"> <input type="reset" value="Reset" name="B2">
simple.aspx
Código ASP:
Ver original<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<%
Dim strName as String
Dim strAddress as String
strName = Request.Form( "Name" )
strAddress = Request.Form( "Address" )
%>
The name that was submitted was: <font color="red">
<%=strName%></font><br>
The address that was submitted was: <font color="red">
<%=strAddress%></font><br>
</body>
</html>
Desde ya muchas gracias.