Ask a Question related to Dreamweaver AppDev, Design and Development.
-
acidrain9 #1
passing existing url parameters to Success URL
bassically i am trying to show the results of my add record for on a detail page
so i need to be able to pass the existing url parameter ( i.e. ID=364 ) to the
success page (i.e. success.aspx?ID=364)
i tried using success.aspx?ID=<%# Request.QueryString("LeadID") %> but i keep
getting this error
Compiler Error Message: BC32017: Comma, ')', or a valid expression
continuation expected.
on line 4 which is my <MM:Insert line
any sugestions
acidrain9 Guest
-
Passing Parameters To CFC
I am testing how to return data from a CFC within Flash Forms. I have a simple <cfselect> tag that will hold data returned from a CFC. This CFC... -
passing parameters
Hi Michael, I think you want to modify the links in web control programmatically. You can add several Hyperlink controls to the user control,... -
Passing Parameters into NEW()
Is there any way that the NEW() of a web service can accept parameters ? I would like to pass a boolean to indicate to the webservice that I am in... -
Passing parameters to a script
Pardon the probably simple question, but in trying to find the answer in my books, I have found far more about the subject than I can understand. ... -
Help Passing Parameters
Before going to the third script I'd suggest storing the variables in session variables. Here's how I generally do login scripts. Perhaps have... -
acidrain9 #2
Re: passing existing url parameters to Success URL
i guess i am getting really good at answering my own questions
i figured it out here is the code
SuccessURL='<%# "success.aspx?ID=" + Datasetname.FieldValue("Fieldname", Container) %>'
acidrain9 Guest



Reply With Quote

