<%@ LANGUAGE = VBScript %> <% Option Explicit %> <% Dim key ' Called by iihd.asp, when opening property sheets. ' this is a fairly generic script... we pass in a variety of keys to set our session vars with ' including, but not limited to: vtype, stype, spath, dpath For Each key In Request.QueryString 'Response.write "KEY:" & key 'Response.write " VAL:" & Request.QueryString(key) & "

" Session(key)=Request.QueryString(key) Next %>