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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. webdevelopernj

    How do you send an email with a link that contains....

    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...
  2. webdevelopernj

    How do you send an email with a link that contains....

    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...
  3. webdevelopernj

    Search results that can call perl subroutine

    justice41 - got it working with the following code: foreach $editCount (0..10) { if ($query->param('action') eq 'EDIT'.$editCount) { $query = &restore_parameters($query,$editCount); }...
  4. webdevelopernj

    Search results that can call perl subroutine

    thanks for your help justice41, sorry for the double post
  5. webdevelopernj

    Create a search where results call a perl subroutine

    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...
  6. webdevelopernj

    Search results that can call perl subroutine

    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...
  7. webdevelopernj

    Create HTML buttons on the fly with cgi.pm

    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...
  8. webdevelopernj

    Create html buttons on the fly using cgi.pm

    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...
  9. webdevelopernj

    How do you wrap if statements around function calls that return a valu

    #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)...

Part and Inventory Search

Back
Top