Thank you Aaron, I'm still working on it. I created a redirect page for my index.html to be a cgi script. This way it can handle variables.
I've created the paramerter: $query->hidden(-name=>'frameSrc' -default=>'home.html')
where $pageVar = $query->param('frameSrc');
if...
How do you send an email with a link to a frameset page that contains attributes such as "onClick".
My problem is that currently I send an email with specific cgi parameters. Although, this does display the page i want, i do not have the entire frameset, just that page.
Currently, I...
justice41 - got it working with the following code:
foreach $editCount (0..10) {
if ($query->param('action') eq 'EDIT'.$editCount) {
$query = &restore_parameters($query,$editCount);
}...
I currently have a search implemented where the results are returned in a textfield with an adjacent 'EDIT' button that calls restore_parameters when click.
I've modified the code to handle three results by providing an EDIT1, EDIT2, and EDIT3 buttons that each related to...
I currently have a search implemented where the results are returned in a textfield with an adjacent 'EDIT' button that calls restore_parameters when click.
I've modified the code to handle three results by providing an EDIT1, EDIT2, and EDIT3 buttons that each related to...
I am trying to dynamically create html buttons on the fly. Normally when I call a function after a button is pressed I used code like this:
$query = &restore_parameters($query) if $query->param('action') eq 'EDIT';
The function call above to restore_parameters is a well recognized functions...
I am trying to dynamically create html buttons on the fly. Normally when I call a function after a button is pressed I used code like this:
$query = &restore_parameters($query) if $query->param('action') eq 'EDIT';
The function call above to restore_parameters is a well recognized functions...
#I attempting to a function conditionally based on a button #that was pressed, my first problem is that I need know how #to call a function conditionally.
#Example (this line exists in the #popular "restore_paramters" function)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.