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 Aeros

  1. Aeros

    spam spiders grabing emails

    Woudl just swapping out the '@' sybol do the job? username@domain.com Thanks for your feedback
  2. Aeros

    spam spiders grabing emails

    We display alot of users information on our sites including their email addresses. Whats the best technique to use to still display the email addresses but hurt the spam-spiders from grabing this information? Thanks
  3. Aeros

    Is it very bad to use frames?

    As with anything it depends on your application. Spiders generally choke on them so I dont use them for internet sites. Since I dont care about that for internal sites I will occasionaly use them for intranet sites.
  4. Aeros

    looking for a dsl router

    Im wondering if anyone can recommend a router to me for my business needs. I have several clients that I want to set web fitlers on. Some of the employees find the need to visit and waste time on certain sites and instead of setting up filters on all of these machines individually (win xp) I...
  5. Aeros

    larger storage than 8000 char

    What do you do when you need to store ALOT of text and need to go past the limits of a varchar with 8000 characters? Thanks
  6. Aeros

    blocking urls for clients

    Im looking for a good application to run on our windows 2k server that will allow me to block out websites for our client machines. Thanks
  7. Aeros

    schedule on certain days of the week

    I guess I could set it up to run daily and put some functionality in the script to check on the day of the week to run it: <cfoutput> <cfif dayofweek(now()) eq 2 or dayofweek(now()) eq 4> execute script </cfif> </cfoutput>
  8. Aeros

    Printing form values

    <a href="javascript:void(window.print())">PRINT ME</a> Is this what your looking for?
  9. Aeros

    schedule on certain days of the week

    I see in the schedule section of the CFMX admin I can set this to run daily, weekly or monthly. If I set it to run weekly does it start a week from the point that I set this at? Preferably I woudl like this to run every Monday and Wednesday morning. Whats the best way of doing this? Thanks
  10. Aeros

    ...greater than the allowable maximum of 8094

    that seems to have helped. So I take it that this is saying look at the first 100 chars of that field correct? Thanks for your help!
  11. Aeros

    ...greater than the allowable maximum of 8094

    I have a query that is giving me an error when I use the 'ORDER BY' function but is fine if I DONT use the 'ORDER BY' and I really have no idea why this would happen. Useing this query without the 'ORDER BY' gives me a result of 32 rows: declare @sqlSearchParam varchar(500) set...
  12. Aeros

    Creating printable PDF's

    thanks!
  13. Aeros

    Creating printable PDF's

    FYI this is on a CF 6.1 machine
  14. Aeros

    Creating printable PDF's

    I want to allow clients to enter their content and images into a predefined template on my site which will get stored into a database. Then I need to have that data created into a pdf that will go to our production department to get placed into our printable magazine. Ive looked at the HTMLDOC...
  15. Aeros

    weird SP problem

    When I run this query is query analyzer I get the results I expect but when I run the stored procedure with the same query I get 0 results. Any ideas? <cfparam name="sqlCatID" default=""> <CFSTOREDPROC procedure="dbo.GetListingsByCatID" datasource="tswdb"> <CFPROCPARAM type="IN"...

Part and Inventory Search

Back
Top