PDA

Click to See Complete Forum and Search --> : create a record set for each user...session?


tmashley
Feb 3rd, 2003, 08:17 AM
hello,

i have created a web application

in the application the user selects certian critria and performs a
query that retrives data from an inSQL database.

i want to use this data within;
a datagrid,
a crystal report,
a teeChart.

the only thing is that many different user can run the query
from many different pc's.

how do i create a recordset that is specific to the user that
has logged in?

i do have these lines in my global.asax:
strSplitLogin = split(Request.ServerVariables("LOGON_USER"),"\")
strNTDomain = strSplitLogin(1)
Session("username") = strNTDomain

Session("domainname") = Split(Request.ServerVariables("LOGON_USER"), "\")(0)

please help...