I'd *like* to be able to pass parameters in a URL of: ?ClientRID=ClientRIDValue&AdmissionRID=AdmissionRIDValue&Type=Client (or Admission)
Where
ClientRID -- a field in the target table
AdmissionRID -- another field in that target table
Type -- a purely virtual value which will tell me which field to query
Then use logic in the search query such as:
OR
AND [@Type] = "Client" + [ClientRID] = [@ClientRID]
AND [@Type] = "Admission" + [AdmissionRID] = [@AdmissionRID]
Can this be done?
This would save me many DataPages to be able to dynamically create listings from a single DataPage instead of having to have 1 which pulls the listing for Clients and another which pulls the-otherwise-exactly-the-same-listing for Admissions. :0)
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
Becca37
I'd *like* to be able to pass parameters in a URL of: ?ClientRID=ClientRIDValue&AdmissionRID=AdmissionRIDValue&Type=Client (or Admission)
Where
ClientRID -- a field in the target table
AdmissionRID -- another field in that target table
Type -- a purely virtual value which will tell me which field to query
Then use logic in the search query such as:
OR
AND [@Type] = "Client" + [ClientRID] = [@ClientRID]
AND [@Type] = "Admission" + [AdmissionRID] = [@AdmissionRID]
Can this be done?
This would save me many DataPages to be able to dynamically create listings from a single DataPage instead of having to have 1 which pulls the listing for Clients and another which pulls the-otherwise-exactly-the-same-listing for Admissions. :0)
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.