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 bkrike 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: *

  • Users: lizok
  • Content: Threads
  • Order by date
  1. lizok

    strip last closing </p>

    Hello. i need some help with stripping last closing </p> tag in the string. i might have some text like this: <p>this is paragpha 1</p> <p>this is paragraph 2</p> well i need to strip that very last </p> tag for paragraph2. can you anyone help? thanks
  2. lizok

    regex: strip duplicates href tags

    Hello, i have a text that contains hyperlinked works. some of them appear more than once making the text look very saturated with links. how can i (using regular expressions), strip duplicate a href tags? for reapeated items, hrefs are identical. i want to keep only the first occurance...
  3. lizok

    how to strip &quot;onCLick&quot; even from a href tag?

    hello, i'd like to know what the regex to strip onclick even from a href tag? ex. i have this code: <a href="http://blogs.usatoday.com/oped/2008/02/it-wasnt-suppos.html" onClick="return trackclick('http://blogs.usatoday.com/oped/2008/02/it-wasnt-suppos.html' 'Michael Medved USA Today''Campaign...
  4. lizok

    scrape data from multiple datasources(DB servers) into centralized DB

    hello, i need some help. i have 8 DB servers that collect data. every 5 min i need to scrape those 8 DB tables into one centralized DB (9th server). 1. i need to be able to select only unique rows that have not been selected before 2. i need to have those 8 DB servers available for new...
  5. lizok

    Scrape search result count from Google using CFHTTP

    Hello! Can anyone tell me how to get a result count from Google using CFHTTP? example i am searching to Cold fusion: cfhttp: http://www.google.com/search?hl=en&q=cold+fusion i need to scrape "87,100,000" from "Results 1 - 10 of about 87,100,000 for cold fusion [definition]. (0.07 seconds) "...
  6. lizok

    How to split content into multiple pages?

    hello everyone! i have row of data (article to be exact). Content is tores as "text 16" in sql server. So 1 article=1 row returned. Those articles tend to run on and on. i'd like to split (span) into multiple pages with Page 1,2,3,4... as navigation links. any advise on how to do it best? BTW...
  7. lizok

    Creating trully dynamic forms on the fly- brainstorming

    Hello all. Maybe you tell me that this can't be done in CF, but i hope it can. here is my dilemma: I need a way to create trully dynamic forms online (such that a non-programmer can do it). For example: pick items you wanted inluded on the forms such as radio buttons, checkboxes, textareas...
  8. lizok

    How to determine the type of Input?

    Hello, i was wondering is there a way to determine the type of input used on the form? i have a bunch of dynamic fields that i create on the fly: some are checkboxes, some are radio buttons, etc. in Javascript id would be document.form.element.type How would i do that in CF? (on Submit i am...
  9. lizok

    Ajax /ASP.NET requirements for client install

    Hello All, i started to search for dev tools to rewrite CF application. Ajax seems the way to go to avoid annoying refreshes onSubmit. So the question i have: if i were to use ASP.NET and Ajax, whet would the client need if he wanted to host the site? besides database, IIS, would .NET framework...
  10. lizok

    Save CF apps from updating to .NET! Need help!

    Hello All, i need to write up a statement for my managment on why do i think we need to upgrade to MX7. Being an avid fanatic of CF, i'd like to preserve it, while the company is moving towards .NET environment. We currently run CF 5. thank you all for input. liz
  11. lizok

    cfquery output in 2 columns (participant list), ordering down

    Hello. i am having trouble outputting the cf query into 2 columns: name1 name3 address address city, state city, state name2 name4 address address city, state city, state The problems is: i am dumping it into MSword and can't detect...
  12. lizok

    recursevly compare values in string (comma separated)

    Hello all javascript gurus! here is one i have a problem with: i have a string with comma separated elements. Dynamic number of elements. Never know how many there are could be. i need: compare them. make sure that none of them is equal to another one. example: string (2,1,1,0) there are 2...
  13. lizok

    link checker

    Can any one tell me how to develop a link checker across a site? maybe point me in the right direction? thank you liz
  14. lizok

    flag DB in Coldfusion when Javascript is disabled

    Hello, Is there a way to flag DB in Coldfusion when Javascript is disabled. I have tried adding code to <noscript> to flag, but code is always executed regardless wether or not javascript is disabled. Any workaround? thank you
  15. lizok

    need your input on validation for those who turn off Javascrip

    Hello, here is the situation: we have an app. user fills in data on several sections. data is numeric. currently we have js page that runs validation on the pages. Some sections require cross validations with other sections. For example: Sec2Field1 must match Sec3Field3. and so on. Some users to...
  16. lizok

    sorting query output with Romal Numeral (sorted alphabetically)

    Hello, i need some help. i have a query that outputs this one column that (note: 602.16(a)(1)(i) is data in column, not concatinated data): 602.15(a)(4) 602.15(a)(5) 602.15(a)(6) 602.15(b) 602.16(a)(1)(i) 602.16(a)(1)(ii) 602.16(a)(1)(iii) 602.16(a)(1)(iv) 602.16(a)(1)(ix) 602.16(a)(1)(v)...
  17. lizok

    Need help on parsing fixed-width file and update DB

    Hello, i am trying to parse an uploaded file which is a fixed-width format. I have predefined length for each field and the number of fields. What would be the best approach/technique to accomplish this? example: ID- 11 chars Year -4 chars SSN-9 chars LastName-20chars Firstname-10 chars the...
  18. lizok

    Upload file to a file server instead of web server?

    Hello. has any one ever tried uploading file using CFFILE to a separate FILE server instead of WEB server? What are the potential problems?bugs? background: we are upgrading to CF 7 and since clients will be uploading their file through out a year, we might run out of space on web server and...
  19. lizok

    cffile: validate file name and remove dup PERIODS from file name

    i am getting this error when trying to upload a file that contains duplicate PERIODS in the name: The path, 'G:\ASLweb\Uploads\COA_4\fdhdfg..doc', is illegal. Path specifications cannot include '..' If there any way i can prevent user from trying to upload a file with ".." in the extension...
  20. lizok

    how to determine if record was last updated 60 min ago

    Hi i am trying to write a query that would pull all records from the table where record was last updated 60 min ago and flag them? aim a little confused with datepart (is that what i use?) to determine was 60 min since the last update? i'd appreciate any help. (and sample code :-)) thank you liz

Part and Inventory Search

Back
Top