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 strongm 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
  • 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?

    thanks kaht , but this was not what i was looking for. i was looking for regex and figured it incase anyone needs it: 'onClick="[^"]*"' where a string that starts with onCLick and ends with " is extracted.
  4. 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...
  5. 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...
  6. 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) "...
  7. 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...
  8. lizok

    Creating trully dynamic forms on the fly- brainstorming

    Actually what i was looking for is saving data from those objects/ kets say i place checkboxes (lets say 8 of them) , i'd need to capture those values in place them into db. and then repopulate tha form with that data. i thought maybe PDF forms and then dump data to database?
  9. 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...
  10. lizok

    How to determine the type of Input?

    thank you so much...i felt there was an easier way out :-)
  11. lizok

    How to determine the type of Input?

    Thank you for response. Maybe i am complicating things. i generate CF page on the fly. Some fields are checkboxes, some radio buttons. i was thinking about how will i know how to process data from those fields on the action page? if the dynamic input field is checkbox, i was thinking to check...
  12. 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...
  13. lizok

    Ajax /ASP.NET requirements for client install

    Thank you for quick reply. What lelse is required to run ajax? I've also read that thereare frameworks forAjax development popping up like Atlas. Has anyone has a advice on whats gooddddd and whats not? liz
  14. 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...
  15. lizok

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

    we inherited some old CF application that need to be redesigned. WE also have Access app which i rewrote in CF. Original Access had many reports that can't be reproduced(hard to) in CF without messing with MS word and RFT formats. These apps will stay in CF. however I think we need to upgrade to...
  16. 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
  17. 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...
  18. lizok

    internet radio streaming

    check this out. might help http://www.devsource.com/article2/0,1759,1772060,00.asp
  19. lizok

    recursevly compare values in string (comma separated)

    you guys are great!!!! thank you
  20. 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...

Part and Inventory Search

Back
Top