Boas, Tenho o seginte problema: Tenho uma base de dados em access com o nome users.mdb depoix um ficheiro em asp que se chama index.asp com o seguinte codigo  <html> <head> <title>Área Administrativa</title> </head> <body bgcolor=ffffff>  <script language="JavaScript" type="text/javascript"> <!-- if (!(document.layers)) { 	document.write('<style type="text/css">\ 	.bt{color:#ffffff;background-color:#0099ff;border: 1px solid #590808;}\ 	</style>'); }  //--> </script>  <table border=0 cellpadding=0 cellspacing=0 width=100% height=100%>  <tr>     <td width=37% height=33%>     </td>     <td width=20% height=33%>     </td>     <td width=38% height=33%>     </td>  </tr>  <tr>     <td width=37% height=33%>     </td>     <td width=25% height=33% align=center>         <table border=1 cellpadding=0 cellspacing=0 bordercolor=000000 style="border-collapse:collapse" width=100%>         <tr>            <td bgcolor=0099ff align=center width=100%>               <font face="Verdana" color=ffffff size=2>               <b>Área Administrativa</b>            </td>         </tr>         <tr>            <td width=100% align=center bgcolor=dddddd>                <table border=0 width=90%>                <tr>                   <td>                      <form method="post" action="logar.asp">                      <font face="Verdana" color=000000 size=1>                      Usuário:                   </td>                   <td align=right>                      <input type="text" name="user" size=20>                   </td>                </tr>                <tr>  Depois outro chamado logar.asp com o seguinte codigo   <html> <body bgcolor=ffffff>  <% validpwd="false"  usuario=request.form("user") senha=request.form("pass")   If usuario<>"" and senha<>"" Then   	Conexao = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.mappath("users.mdb") & ";" 	Set conn = Server.CreateObject("ADODB.Connection") 	conn.open Conexao 	Set rs = conn.Execute( "Select * from users where user='"&usuario&"' and pass='"&senha&"'") 	If not rs.eof then 			response.write rs.eof("nome") 		Else 			validpwd="false" 		End If 	Else 		validpwd="false" 	end if  	rs.Close 	Set rs=Nothing 	conn.Close 	Set conn=Nothing  	If validpwd="true" Then 		Session("status") = "login" 		response.write rs.eof("nome") 	End If   If validpwd="false" Then 	response.redirect "index.asp?erro=1" End If  %>   </body> </html>   e outro com o nome entrou.asp com o seguinte codigo   <%   if Session("status")<>"login" then      response.write rs.filds("nome")      end if  session("status")=""  %>  <html> <head> <title>Logado</title> </head>  <body leftmargin=0 topmargin=0 text="#000000" bgcolor="#FFFFFF" link="#0000FF" vlink="#0000FF" alink="#FF0000">  <table border=0 width="100%" cellspacing=3 cellpadding=3> <tr> <td align="left"><font face="verdana" size=2> Olá <b><% = nome %></b>, você está logado(a)!</font></td> <td align="right"><font face="verdana" size=2><a href="index.asp">Sair</a></font></td> </tr> <tr><td colspan=2><hr></td></tr></table>  </html>   A base de dados em access contem os campos User, Pass, Nome, socio... eu gostava de que quando tivesse logado o campo nome e socio fosse vizualizado...  alguém me pode ajudar??  Obrigado