Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Function Check ????

Status
Not open for further replies.

Cap2010

Programmer
Mar 29, 2000
196
CA
need to modify this javascript to filter a RS on an asp page load by a value carried over in a session variable. getting the RS to filter properly if the Db field matches the session variable,
but need to show all records that include/contain the session variable in the
Db field.

function Att_Cases_Query_Server()
{ if (String(Session("Att_ID")) != "undefined") { var serverVar = Session("Att_ID") Att_Cases_Query.Filter("Att_ID" + " = '" + serverVar + "'") } }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top