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 derfloh 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. DrDan2

    Problem trying to confirm password.

    Cheers mate. That was another problem I was trying to address.
  2. DrDan2

    Problem trying to confirm password.

    Ah. I solved it. It was a problem with the META Refresh tag. I looked up some CF tags and found one called <CFLOCATION> which works like a treat.
  3. DrDan2

    Problem trying to confirm password.

    I forgot. This is the error that is returned: Variable PASSWORD is undefined. ----------------------------------------------------- The Error Occurred in C:\CFusionMX\wwwroot\CFIDE\administrator\DiveData\NewMemberDetails.cfm: line 4 2 : 3 : <CFIF Password NEQ Password2 OR 4 ...
  4. DrDan2

    Problem trying to confirm password.

    ...Name=&quot;ContactName&quot;></td></TR> <TR><td>Your Business' Name:</td><td><INPUT TYPE=&quot;Text&quot; Name=&quot;OrgName&quot;>*</td></TR> <TR><td>Organisation:</td><td><SELECT Name=&quot;Organisation&quot;> <OPTION VALUE=&quot;PADI&quot;>PADI</OPTION> <OPTION...
  5. DrDan2

    Problem trying to confirm password.

    Thanks. I'll have to double, triple check it then. I had CFSET, but CFPARAM would be better . Thanks.
  6. DrDan2

    Problem trying to confirm password.

    I have a form that will post to a CF page. The form has two fields to fill in with names 'Password and Password2.' I have the following code in my CF page: <CFIF #Password# NEQ #Password2# OR LEN(TRIM(Form.Password)LTE 0)> <CFSET Error1=&quot;Please Check Password.<br>&quot;> </CFIF>...
  7. DrDan2

    Email address update

    Ah. I see. Thanks. I heard that CFMAIL is limited to sending a certain amount of emails a go. Do you know if that's true?
  8. DrDan2

    Search with SQL WHERE. AND or OR?? or what?

    Thanks. Too tired to try it out now tho. Where you typed, &quot;Where 1=1&quot; Whats the 1=1 for? I am new to ColdFusion. :) Thanks again.
  9. DrDan2

    Redirect page

    Is there a way to do it using HTML only. I simply want to change the current page to another. e.g. if they type in a URL, it brings up another in the same page that will say something like, &quot;Closed for Maintenance&quot; Thanks
  10. DrDan2

    Redirect page

    I would like to make a page that when opened will open another page. How exactly do I do this?
  11. DrDan2

    Search with SQL WHERE. AND or OR?? or what?

    ...city. How do I get it to bring up All records where Country=&quot;Kenya&quot; even if City=Null? This SQL code doesn't do the job: <CFQUERY Name=&quot;DiveSearch&quot; DATASOURCE=&quot;DiveSchools&quot;> Select * From DiveData Where Country='#Country#' AND City='#City#' </CFQUERY>...
  12. DrDan2

    Multiple reults problem. &lt;CFLOOP&gt;

    Never mind, but thanks. I got that sorted out now. :)
  13. DrDan2

    Multiple reults problem. &lt;CFLOOP&gt;

    ...far. Thanks again. Oh yeah. What's the INDEX for in <CFLOOP>? <CFQUERY Name=&quot;DiveSearch&quot; DATASOURCE=&quot;DiveSchools&quot;> Select * From DiveData Where Country='#Country#' </CFQUERY> <CFPARAM NAME=&quot;CountR&quot; DEFAULT=&quot;1&quot;> <HEAD><TITLE>Search...
  14. DrDan2

    Multiple reults problem. &lt;CFLOOP&gt;

    ...out.---------------------------------------------------- <CFQUERY Name=&quot;DiveSearch&quot; DATASOURCE=&quot;DiveSchools&quot;> Select * From DiveData Where Country='#Country#' </CFQUERY> <CFPARAM NAME=&quot;CountR&quot; DEFAULT=&quot;1&quot;> <HEAD><TITLE>Search...
  15. DrDan2

    Edit record from web page?

    I'm new to Coldfusion but I'm learning fast. Hoever I'm kinda stumped at how I can get a user to edit their details. I have a page where they can send their details to be inputed into the Access 2000 database and a page that can view those details. But if the somone changes address or...
  16. DrDan2

    Changing a Password into Asterixes?

    Well I had a similar issue, but all I did was change the TYPE from &quot;text&quot; to &quot;password&quot;. It then displays the asterisk symbols instead of the typed in text. try it. Password: <INPUT TYPE=&quot;Password&quot; Name=&quot;Password&quot;>
  17. DrDan2

    Changing a Password into Asterixes?

    I owe you one anyway. :) I'm no expert as I'm only learning myself but I believe that if you use the following, it should work: <INPUT TYPE=&quot;Password&quot; Name=&quot;blahblah&quot;> and so on. Simple as that... I think ;)
  18. DrDan2

    Empty Form Fields causing problems

    Pretty obvious isn't it. lol. Thanks. :)
  19. DrDan2

    Empty Form Fields causing problems

    Sorry. Ignore all that. All I had to do was cahnge the properties in the Access Database, but I still have trouble with the Logo which can be uploaded. If that is left empty, it doesn't work. This is my code for that. <CFFILE ACTION=&quot;Upload&quot; FILEFIELD=&quot;Form.Logo&quot...
  20. DrDan2

    Empty Form Fields causing problems

    ...'#Website#','#Facilities#') </CFQUERY> <CFQUERY DATASOURCE=&quot;DiveSchools&quot; Name=&quot;LogoQuery&quot;> Select * From DiveData Where Logo='#NewLogo#' AND OrgName='#OrgName#' </CFQUERY> <HEAD><TITLE>AAAARGH</TITLE></HEAD> <BODY> <CENTER><H2>WOOHOO! This is Your...

Part and Inventory Search

Back
Top