Hi all,

I have variable declared in my first asp page
<%
Dim userId
userId=Request.form("name")

I user this userId in my queries and it works fine

%>

Now I try to use the userId in my queries, in my second asp page, and it doesn't work. I also used <!--#include file="start.asp"--> in my second asp page.

Am I doing something wrong in here. Why can my second asp page recognize the variables I declared in my first asp page??

Reggie