Bueno para empezar les coloco la conexion como segun yo la entendi y mi enlace a las text porfavor tenganme paciencia jeje o es mi fuerte el asp

este es el codigo de mi paguina:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<!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>base de datos</title>
</head>
<body>
<%
Dim conn As ADODB.Connection
Dim cmd As ADODB.Command
Dim rs As ADODB.Recordset
Set conn = Server.CreateObject("ADODB.Connection")
set cmd = Server.CreateObject("ADODB.Command")
set rs = Server.CreateObject("ADODB.Recordset")
conn.ConnectionString = "driver=SQL Server;server=DESARROLLO;uid=;pwd=;database=EXTERN A"
conn.CursorLocation = adUseClient
conn.Open
rs.Open "select * from prueba ", conn, adOpenDynamic, adLockOptimistic
rs("id") = txtid
rs("nombre") = txtnombre
rs("puesto") = txtpuesto
rs("area") = txtarea
rs("telefono") = txttelefono
rs("sueldo") = txtsueldo
rs("fecha_ingreso") = txtfecha
rs("turno") = txtrueno
%>
<form id="form1" name="form1" method="post" action="">
<label>ID
<input type="text" name="txtid" />
</label>
</form>
<form id="form2" name="form2" method="post" action="">
NOMBRE
<input type="text" name="txtnombre" />
</form>
<form id="form3" name="form3" method="post" action="">
PUESTO
<input type="text" name="txtpuesto" />
</form>
<form id="form4" name="form4" method="post" action="">
AREA
<input type="text" name="txtarea" />
</form>
<form id="form5" name="form5" method="post" action="">
<p>TELEFONO
<input type="text" name="txttelefono" /></p>
</form>
<form id="form6" name="form6" method="post" action="">
SUELDO
<input type="text" name="txtsueldo" />
</form>
<form id="form7" name="form7" method="post" action="">
FECHA
<input type="text" name="txtfecha" />
</form>
<form id="form8" name="form8" method="post" action="">
TURNO
<input type="text" name="txtturno" />
</form>
<p> </p>
</body>
</html>
de ante mano les agradesco a los que se allan tomado la molestia en leer mi problema
