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: Krogh
  • Order by date
  1. Krogh

    POST request's body

    In fact, i've a JAVA http client.. and i can't put some CF to replace it, cause it works as an Applet on client-side, the CF script on server should be able to read the request containg some XML data. I finally found the solution, under CF 5, there's the function GetHttpRequestData() that can...
  2. Krogh

    POST request's body

    hi.. i made an http client in java, it's able to send a GET or POST request.. my problem is.. when i send a POST request, i'm not able to get the request's body under CF. The body does not contains formfields or things like that.. just some XML data. when i dump cgi vars, CGI.CONTENT_LENGTH is...
  3. Krogh

    MS Access without ODBC

    i saw another way on an older post... what's about that way ? does it work in MX ? <cfset dsn = &quot;c:\my_dbase.mdb&quot;> <cfquery datasource=&quot;#dsn#&quot; dbtype=&quot;OLEDB&quot; provider=&quot;Microsoft.Jet.OLEDB.4.0&quot; providerdsn=&quot;#dsn#&quot...
  4. Krogh

    Know any CF web-based HTML editors that support CSS?

    hi, most of these HTML editing component are based on the Microsoft's DHTMLEd component that is included in IE 5.0+ .. for older version it is possible to download the component automaticly.. there's a fully documented SDK you can find at this location...
  5. Krogh

    MS Access without ODBC

    I'd like know if there is a way in ColdFusion to use a MS Access database without an ODBC link. thx for help
  6. Krogh

    simple xml question

    i just finished a tool that imports and exports XML data to and from a database.. i used the XMLFormat function to export .. i don't know which function to call to get the &quot;normal&quot; text back from my XML file..
  7. Krogh

    custom tag

    You just have to put it in a folder that is not shared.. But if you can't ... you can put this code in your tag <cfif CGI.SCRIPT_NAME EQ &quot;/myfolder/mycustomtag.cfm&quot;> <cfbreak> </cfif> but the best way would be to put it in a mapped folder that is not shared
  8. Krogh

    CFContent question

    hi, you must know that CFContent will only change the &quot;Content-type&quot; of the HTTP header. So the problem is client side, you should check if there's no missing component for embedding excel into the browser. Try also other MIME into CFContent such as &quot;application/msexcel&quot...
  9. Krogh

    Detect Flash Version

    2nd try.. just woke up :) hi, you must know coldfusion is only a server-side language this means it's processed on the server and there's no way to detect something about the client that is not present in the HTTP header. To detect any plugin you should use JavaScript or VBScript (IE only). You...
  10. Krogh

    Detect Flash Version

    hi, you must know coldfusion is only a server-side language this means it's processed on the server and there's no way to detect something about the client that is not present in the HTTP header. To detect any plugin you should use JavaScript ou VBScript (IE only). You can find that kind of...
  11. Krogh

    OLEDB Error Code = 170

    hi i just saw you had null value for some data other than string you must put NULL in your query instead of nothing it should solve your problem SQL = &quot;INSERT INTO turnover VALUES ( '10/21/2002', '3rd Shift', 6, 'None.', 'Outstanding for CA.', 'Sorter 4: Cycle Sorter 11: CA-Paid Sorter 12...
  12. Krogh

    I need a secured website

    you should simply use an HTTPS website...
  13. Krogh

    Download File - Contents within a CF Page

    Hi, You can force the download by using the following line <cfheader NAME=&quot;Content-disposition&quot; VALUE=&quot;ATTACHMENT&quot;> it will add the Content-disposition to the HTTP answer that will mention the file must be downloaded. Most of the browser support it.. maybe some old browser...
  14. Krogh

    19.0 instead of 19

    there is the NumberFormat function to fix it... NumberFormat(number,mask) just use it that way #NumberFormat(myvar,&quot;99999&quot;)# this will not display the decimal part of any number
  15. Krogh

    How to display a message until records are retrieved?

    that's one of the simpliest solution i found and it works in almost all browser (including IE, NS4+, NS6) <html> <body> <div id=&quot;loading&quot; style=&quot;position:absolute;top:100px;left:300px;&quot;> <!--- Your waiting text or image goes here ---> LOADING PLEASE WAIT... </div> <!---...
  16. Krogh

    How to display a message until records are retrieved?

    i didn't try but you could use dhtml to do it .. use <cfflush> to send your dhtml layer.. and then just set the visibility to &quot;hidden&quot; when the query is completed
  17. Krogh

    OOP under cfscript

    Thanks.. i'll try this way.. anyway i saw that there's a way to handle objects under cf under mx.. (cf. http://www.cfobjects.com) .. but i think i'll wait for my MX upgrade before handling objects
  18. Krogh

    how to use the &quot;accept&quot; attributes code to manage video files

    You can find all the mime type handled by your computer (under win32) in the register : HKEY_CLASSES_ROOT\MIME\Database\Content Type
  19. Krogh

    OOP under cfscript

    Hi all, i was trying to create some &quot;objects&quot; under <cfscript> to see if cfscript supported it.. and i saw the same way than javascript doesn't work, for exemple : function createDomNode(name,content) { this.name = name; this.content = content; this.type = &quot;&quot...
  20. Krogh

    How to Ping IP address use Java code

    your web service could be down and the server will answer to a ping anyway... you should make a http request and check the http answer header

Part and Inventory Search

Back
Top