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 TouchToneTommy 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. minotaur77

    onSubmit I would like to goto action page if true, reload page if fals

    Another way to do it that works well is to have your validation function return a boolean value, true if it is a valid address, false if not. Place a call to that function in the onSubmit event handler of your form tag. It will submit as usual if the value returned is true, otherwise the user...
  2. minotaur77

    Trying to evaluate a cf variable from a text field

    In response to ded's message: I tried that at first, but will not work due to the text present before and after. The evaluate results in an error, for example, #Evaluate("Hi #firstname# #lastname#, how are you?")# generates errors due to the "Hi " in the beginning. The...
  3. minotaur77

    Trying to evaluate a cf variable from a text field

    I did end up getting it to work, and this is how: <cfloop query=&quot;GetEmails&quot;> <cfquery name=&quot;GetEmail&quot; datasource=&quot;TAGSQL&quot; username=&quot;cfuser&quot; password=&quot;jallaire&quot;> SELECT * FROM LogixNewsletter WHERE HTML <> 0 AND Subscribed <> 0...
  4. minotaur77

    Trying to evaluate a cf variable from a text field

    Huh? I don't know what version you are using, but I don't have that tag.
  5. minotaur77

    Trying to evaluate a cf variable from a text field

    I am trying to add a personal touch to emails using the cfmail tag. What I want to do is include in the header of the newletter the persons first name and/or company. I want to be able to evaluate the text field replacing all cf variable listed in it with the corresponding values from the...

Part and Inventory Search

Back
Top