Ask a Question related to Coldfusion Database Access, Design and Development.
-
spoliskey #1
Best way to hire parameters from user
Hi, I have a question on passing parameters via links. Lets say a user gets
a list of all invoice header records that he has layed out in rows of a table.
One of the cells in the row is a link to the invoice detail for that header. I
would put a link to the .cfm page that displays the detail, say like this
viewinvdetail.cfm?invnum=987987 Now, normally I would combine that with a
session variable in my query in order to prevent people from displaying
invoice's that are not theirs by just entering in different invnum's on the
browser address bar. Now lets say this isn't possible for a particular query.
what is the best way to 'hide' the parameters from the user? I can use the
encrypt and decrypt functions but I am wondering what the best practice to do
this with? Thanks in advance!
spoliskey Guest
-
New Hire needs Help ASAP!!!
I'm trying to get started using ColdFusion to test new applications, but am unsure of exactly how to use the current configuration. I have used... -
Adding Dynamic User Control WITH PARAMETERS
Is there a way to dynamically add a user control to a page, AND before the page_load of the user control fires, that you have some of the public... -
Looking to Hire
Hello, I am looking to hire a highly skilled Director 3D freelancer to create an interactive program for my client (and yes, this is a paid gig). ... -
Passing Parameters to User Controls that are Dynamically Loaded in Placeholders
Hi Guys, I have been having a big problem with trying to pass parameters into a user control when the user control is dynamically loaded into a... -
Passing parameters to user controls
Hello. I'm having problem with passing parameters from .aspx file to user control. Could anyone tell me how to pass parameters from .aspx file to... -
kyle969 #2
Re: Best way to hire parameters from user
encrypt/decrypt should work well, you could also generate a random string and
use it as a primary key in a table with invnum as a foreign key. I have used
that technique when the link was too long for a url, I just stored the values
in a table.
encrypt/decrypt is probably the easiest way tho.
kyle969 Guest



Reply With Quote

