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!

Search results for query: *

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

    CFMODULE and images

    Hopefully the last question for a while ... :-) Okay. I'm using a cfm file as a kind of layout template, which I call from another CFM file. <cfset test= "test page"/> <cfmodule template="templates/template.cfm"> <cfoutput>Hello! #test#</cfoutput> </cfmodule> Which works OK. But here's the...
  2. Rayz66

    Outer joins in MSAccess

    Hi there. I have this query, which I'm going to use for a Group output. <cfquery name="allContents" datasource="#request.DSN#"> SELECT contentType.id, contentType.typeOfContent, contentType.orderOfType, contentType.active, contentType.showHeading, content.id, content.title...
  3. Rayz66

    MVC and ColdFusion: Best practices

    Hi there. Flushed with success after my first CF website went live; I'm going to have a crack at another one. Now I'm looking at adopting a MVC approach (which, until I read Ben Forta's book, I didn't realise was possible). I'm going to have a controller page (like documentController.cfm)...
  4. Rayz66

    Baffled by ColdFusion date handling

    Hi there ... :-) I have a form which has a field for entering a date. Now the date has to be in European format, but I can't figure out how to tell ColdFusion that the date is European when I submit the form to the database. I'm using CFINSERT/CFUPDATE, and as far as I can tell, ColdFusion...
  5. Rayz66

    Weblogic as an Apache Axis SSL client

    Hi there ... :-) I was wondering if someone could help me with a problem I have with WebLogic Version7 I have written a method which uses Apache Axis to call a web service method on a secure server: ------------------------------------------------------- public String putOrder(String...
  6. Rayz66

    Getting image from a link

    Hi there .. :-) I have a link, which looks something like this: <a href=&quot;page.jsp&quot;><img src=&quot;test.jpg&quot;></a> Is it possible to get hold of the img src value directly. I can do it by parsing the contents of the link <a href>, but I wondered if there was a neater way of doing...
  7. Rayz66

    Matching exactly zero occurrences using Regular expression ...

    Could someone help me out with a strange regular expression I'm trying to write. I'm trying to scan through a HTML page, and convert image tags into links. The problem is that the page maybe scanned more than once, so I don't want to convert image tags that have been already done in a previous...
  8. Rayz66

    Getting the list of available appenders

    Hello there. Is it possible to pick up the complete list of availabe appenders usign Java. As well as all the attache appenders, I need to get those that are defined, but may not be used yet. Thanks in advance Ray
  9. Rayz66

    Using JDBC to write to/read from a 'TEXT' field

    Hi there ... in trouble again! .... :-) I have a database table with a 'TEXT' field in it, and I cannot figure out how to write to it via JDBC. I used getAsciiStream to retrieve text from the field, but have got a little stucj trying to get stuff back into the table. Does anyone have any...
  10. Rayz66

    Storing the '£' symbol in a mySQL table

    Hello there ... :-) Could someone tell me how I go about storing a pound symbol in an mySQL table. Having executed the INSERT or UPDATE command, I SELECT the row and all the pound symbols have been changed to question marks (?). Is there a trick to do this? Thanks in advance. Ray

Part and Inventory Search

Back
Top