Forum Discussion
BradleyDamron
8 years agoQrew Cadet
The code is simple:
URLRoot()&"DB/"&[_DBID_xxxxx] &"?A=API_EDITRECORD&rid="&[Record ID#]&
"&_fid_22=" & ToText(Now())&
"&rdr=" & URLEncode(URLRoot() & "db/" &[_DBID_xxxxx] & "?a=er&key="&[Record ID#]&"&dfid=12")
I have two fields, one called security code that I am setting, and other field called access code that I would want to set to equal security code. Then only allow users to view the page when those two match. After a save of the record I would blank the access code through dynamic rules to prevent any unauthorized acess as a futher measure.
URLRoot()&"DB/"&[_DBID_xxxxx] &"?A=API_EDITRECORD&rid="&[Record ID#]&
"&_fid_22=" & ToText(Now())&
"&rdr=" & URLEncode(URLRoot() & "db/" &[_DBID_xxxxx] & "?a=er&key="&[Record ID#]&"&dfid=12")
I have two fields, one called security code that I am setting, and other field called access code that I would want to set to equal security code. Then only allow users to view the page when those two match. After a save of the record I would blank the access code through dynamic rules to prevent any unauthorized acess as a futher measure.