Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/06/2012, 08:43
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 2 meses
Puntos: 47
Respuesta: Enviar Simple Formulario

Bueno segui investigando y logre hacer funcionar asp con wampserver asi que el tema de conexion ya esta bien mi problema ahora es que al ejecutar un ejemplo de un archivo .aspx que consegui en internet me arroja el siguiente error:

XML Parsing Error: not well-formed
Location: file:///C:/SampleASP/default.aspx
Line Number 1, Column 2:


<%@ Page Language="VB" %>
-^


Este es el codigo de la pagina default.aspx:

Código ASP:
Ver original
  1. <%@ Page Language="VB" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html>
  4.    <head>
  5.       <link rel="stylesheet"href="intro.css" mce_href="intro.css">
  6.    </head>
  7.    <body>
  8.        <center>
  9.        <form action="index.aspx" method="post">
  10.            <h3> Name: <input id="Name" type=text>
  11.            Category:  <select id="Category" size=1>
  12.                           <option>One</option>
  13.                           <option>Two</option>
  14.                           <option>Three</option>
  15.                       </select>
  16.            </h3>
  17.            <input type=submit value="Lookup">
  18.            <p>
  19.            <% Dim I As Integer
  20.               For I = 0 to 7 %>
  21.               <font size="<%=I%>"> Sample ASP.NET TEST</font> <br>
  22.            <% Next %>
  23.        </form>
  24.        </center>
  25.    </body>
  26. </html>

Saludos y gracias