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

Recent content by DrLoGiCo

  1. DrLoGiCo

    Submit a form to multiple frames in a frameset

    Avoid Javascript if you can. This is actually very easy to do with CF. Think. The frameset page is always hit, right? Then it calls in other pages as dictated by the frames, via FRAME SRC=. In SRC, its just a URL screen, and you can pass parameters through it... like: FRAME...
  2. DrLoGiCo

    SELECT tag in Netscape

    Gimme more info. what Netcrash are you using? I just tried to recreate your problem and I'm not getting it. Copy and paste the parsed output. Maybe your perl is nuking something unexpected or adding something else... we need more info. :) dr www.drlogico.com
  3. DrLoGiCo

    Query Database and list only 4 queries per page.

    whoops. On the top tag, instead of &quot;value=&quot; its &quot;default=&quot; ::was thinkin CFCOOKIE:: Here ya go: <CFPARAM NAME=&quot;getdata.db_listings_pp&quot; DEFAULT=&quot;4&quot;> Sorry. - Ryan www.drlogico.com
  4. DrLoGiCo

    Query Database and list only 4 queries per page.

    Ok. This is kinda complicated, but if you can figure it out, then go for it. Save this as a snippet, you will use it a lot, most likely. <CFPARAM NAME=&quot;getdata.db_listings_pp&quot; VALUE=&quot;4&quot;> <!--- The Above Code is needed if you don't have a field in your database named...
  5. DrLoGiCo

    SELECT tag in Netscape

    Close out your option tag... Netscape is problematic at times. - Dr www.drlogico.com
  6. DrLoGiCo

    The wonderful world of forms

    What are you using to send the info off? ASP? CF? Throwing data around to the next page won't do a thing unless you have some way of grabbing it again and shooting it to a Database or to an E-Mail. So, what exactly are you doing? Dr www.drlogico.com
  7. DrLoGiCo

    onmouseover glossary

    A simple solution would be to use the HTML tools you've got. :) <ACRONYM TITLE=&quot;This is Dyanmic HTML. The use of CSS, JScript and HTML to make cool pages!&quot;>DHTML</ACRONYM> This is IE only. (Notice the trend? All the goodies are IE only.) As said earlier, you can also use SPAN...
  8. DrLoGiCo

    Learning Dhtml

    www.w3.org www.webmonkey.com Or, buy a book on it. :) Best way to learn is to do. Focus on CSS! Dr www.drlogico.com
  9. DrLoGiCo

    Netscape tables

    The best way to overcome this is buy putting another table inside the cell of your color... See my example below. This requires no messing around with images. <TABLE BORDER=&quot;0&quot; CELLSPACING=&quot;0&quot; CELLPADDING=&quot;0&quot;> <TR> <TD BGCOLOR=&quot;003366&quot...
  10. DrLoGiCo

    trouble with INSERT INTO

    I disagree with Mic. CFINSERT is a quick way to get errors. When possible, use SQL. Become very familiar with SQL... Its your friend. :) I think your prob is that you're not wrapping the &quot;ParentID&quot; with single quotes. Even though you have it specified as an INT (maybe), you...
  11. DrLoGiCo

    Client Variable (Urgent !!)

    Watch out. If you're clustering servers, sessioned could get nuked. This is a good reason to use client variables, because this info is stores in special CF tables in your Database. FYI
  12. DrLoGiCo

    Escaping the Pound sign

    Do it twice... ## Example: <CFSET housenumber = &quot;8&quot;> <CFOUTPUT> <P>House ## #HouseNumber# </CFOUTPUT> It will output as: House # 8 Hope that helps, -Dr http://www.drlogico.com
  13. DrLoGiCo

    Preventing user from going back

    I think you can do it with a meta tag. If you want to do server side checking, you can log their IP with the form, then match it against the last record sent, or if they were there before... <CFQUERY NAME=&quot;PastForms&quot;> SELECT TOP 1 * FROM your_table </CFQUERY> <CFIF...
  14. DrLoGiCo

    How to catch session variable expiration CF4.5

    There are various ways of doing this. This is how I usually catch it... <CFIF ISDEFINED(&quot;session.myvariable&quot;)> ... page code <CFELSE> Session Expired. Please Relog in.. </CFIF> In CF Administrator, you can specify how long you want your sessions to last. You can...

Part and Inventory Search

Back
Top