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<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link rel="stylesheet"href="intro.css" mce_href="intro.css">
</head>
<body>
<center>
<form action="index.aspx" method="post">
<h3> Name: <input id="Name" type=text>
Category: <select id="Category" size=1>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
</h3>
<input type=submit value="Lookup">
<p>
<% Dim I As Integer
For I = 0 to 7 %>
<font size="<%=I%>"> Sample ASP.NET TEST</font> <br>
<% Next %>
</form>
</center>
</body>
</html>
Saludos y gracias