This is my code
<% CUser= request("CUser"
%>
<% Sistemas= request("Sistemas"
%>
<%
Set Conn = Server.CreateObject("ADODB.Connection"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
Conn.Open "DSN=Requisicion;uid=sa;pwd="
sSQL="Select * from T_Inf_Personal where Username = '" &CUser&"' "
set RS = Conn.Execute(sSQL)
If not RS.EOF then
If Sistemas = "" then
Response.Redirect("Cuentas1.asp"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
Else
If Sistemas = "Windows" then
Response.Redirect("Cuentas2.asp"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
End If
End If
End If
Conn.Close
%>
I want to send CUser and Sistemas to the page CuentasX
what can I do?
<% CUser= request("CUser"
<% Sistemas= request("Sistemas"
<%
Set Conn = Server.CreateObject("ADODB.Connection"
Conn.Open "DSN=Requisicion;uid=sa;pwd="
sSQL="Select * from T_Inf_Personal where Username = '" &CUser&"' "
set RS = Conn.Execute(sSQL)
If not RS.EOF then
If Sistemas = "" then
Response.Redirect("Cuentas1.asp"
Else
If Sistemas = "Windows" then
Response.Redirect("Cuentas2.asp"
End If
End If
End If
Conn.Close
%>
I want to send CUser and Sistemas to the page CuentasX
what can I do?