Re: Session in asp -
01-01-2005
, 01:45 PM
Exactly what are trying to repeat? Information based on a session variable?
Simply sort the information in the database by session variable. If its the
username and you are using the dreamweaver user log in behavior, set the
information to read like this:
Simple recordset
filter | username (or whatever the session variable field is) | = | Session
Variable | mm_username
Advanced recordset:
SELECT *
FROM yourdatabase
WHERE username = 'MMColParam'
and in the variables
Name Default Run Time Value
MMColParam 1 Session("mm_username")
That should choose one the information in the database assisgned to that
username and then just apply the repeat region as normal. |