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 Mike Lewis 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: cfsponge
  • Order by date
  1. cfsponge

    Looping through a string for ASCII convert

    Excellent example. Thanks.
  2. cfsponge

    Looping through a string for ASCII convert

    I am trying to come up with a simple loop that takes each character from a string and converts it to its ASCII equivalent. I tried using split(), but since there is no delimiter that's no good. I would output a string from a database field, and convert it to { (example) but it would still...
  3. cfsponge

    Converting latin characters

    After doing all the above research, all I had to do was add the session.codepage=65001 to my ASP pages that the submissions happen on. Since I was already using utf-8 for my character set, this was great. Again, thanks for your help.
  4. cfsponge

    Converting latin characters

    Thank you for the excellent resource. When you say "dbase", you are referring to using any database for storage of the information? I want to make sure you don't specifically mean dBase type.
  5. cfsponge

    Converting latin characters

    I'm having some difficulty with having latin characters converted from either HTML entity or Word to stay converted. I'm using a replace that works on the first time, but subsequent form submissions corrupt them. A few letters, like á and é, always work. I'll use the letter ú for my example...
  6. cfsponge

    Upload Excel and store in SQL Server

    Thanks for the information.
  7. cfsponge

    Upload Excel and store in SQL Server

    The site connection is OLEDB. Does this affect not having to create an Excel app instance.
  8. cfsponge

    Syntax query error

    I'm doing this query from an ASP book that I'm reading. It had that 4th attribute there. If I remove adCmdTable, I get this error: ADODB.Recordset error '800a0cc1' Item cannot be found in the collection corresponding to the requested name or ordinal. /madison/site/_includes/redboxes.inc.asp...
  9. cfsponge

    Upload Excel and store in SQL Server

    Does anyone know of a sound technique or tutorial for A) uploading Excel sheet via HTTP, and B) parsing Excel fields for SQL Server storage?
  10. cfsponge

    Syntax query error

    What am I doing incorrectly with this statement? The SQL runs perfectly in SQL Server. Dim rsRedBoxes Set rsRedBoxes = Server.CreateObject("ADODB.Recordset") sSQL = "SELECT frontBlurb, frontBlurbAlt FROM tblTemplates WHERE frontBlurb IS NOT NULL" rsRedBoxes.Open sSQL, strConn, adOpenStatic...
  11. cfsponge

    Unknown column 'c.access' in 'on clause'

    Thank you. I would have never realized the logic issue with the syntax.
  12. cfsponge

    Unknown column 'c.access' in 'on clause'

    I'm puzzled as to why this query is not working. There is a column named 'access' in the mos_content table (int(11) unsigned). I get the mysql error above when executing. SELECT c.*, g.name AS groupname, cc.name, u.name AS editor, f.content_id AS frontpage, s.title AS section_name, v.name AS...
  13. cfsponge

    Flash app overriding javascript menu

    Excellent resource. The recommendations worked.
  14. cfsponge

    Flash app overriding javascript menu

    Nope, that didn't work. I gave the flash div a negative z-index, and the adjacent menu div a position z-index value.
  15. cfsponge

    Flash app overriding javascript menu

    I'm having an usual issue with a flash app that's embedded in a page on my site. I have a menu to the left of the flash that does a JS horizontal pullout menu. On other pages, this pullout works fun, but on this particular page the pullout doesn't extend over the flash app. While there is...
  16. cfsponge

    Creating Multiple Language Class

    The Dictionary object works perfectly. Thank GOD ASP some primitive associative array skills. Thanks.
  17. cfsponge

    Style not showing in Win IE

    The problem with a redesign is that we are running Joomla as the CMS, and there's only so much I can alter stylesheet wise. Thanks for the assistance, though.
  18. cfsponge

    Style not showing in Win IE

    There are some style classes that are not appearing in Windows IE, but is in Safari and Firefox. I have had sometimes to put the full heirarchy of classes/divs in order for styles to work in IE, but this isn't working either. And I don't understand why. Here is the page (inside the 'Recent...
  19. cfsponge

    Creating Multiple Language Class

    It works well so far. My only question to you is whether the efficiency you speak of is in terms of process speed or content management of the text?
  20. cfsponge

    Creating Multiple Language Class

    Thank you for this excellent function. I'll adjust it for ASP and let you know how it works.

Part and Inventory Search

Back
Top