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!

Recent content by sonicsnail

  1. sonicsnail

    Convert DSN to DSNless...

    Thanks!... My page is now giving errors in the SQL query syntax, which I'm told ISN'T the case when using DSNs. I'm not convinced though - could the version of MS Access on my server matter? Its saying there's an error in here: SQL_query = "select * from User where...
  2. sonicsnail

    Convert DSN to DSNless...

    Thanks for the string choices, but how do I get this to be "MyConn"?
  3. sonicsnail

    Convert DSN to DSNless...

    Here is some of the code in action: Once MyConn is declared it is used for the authentication below.. I'm guessing I just need to use a connection string to create MyConn ---------snip--------- <% Set MyConn = Server.CreateObject(&quot;ADODB.Connection&quot;) MyConn.Open...
  4. sonicsnail

    Convert DSN to DSNless...

    Its an MS Access database... I'm a little familiar with connection strings - I've used one before... I'm more confused by the &quot;MyConn&quot; part in my snippet above
  5. sonicsnail

    Convert DSN to DSNless...

    Hi all, I've inherited an ASP app that uses a DSN, and I only have FTP access to my server, so need to convert the connections to DSN-less strings. My ASP is really bad, and I need help changing this: <% Set MyConn = Server.CreateObject(&quot;ADODB.Connection&quot;) MyConn.Open...
  6. sonicsnail

    Vertical alignment.. but not they *normal* type!

    Hi all, I wish to display some text up the side of a webpage, ie: you'd need to pivot your head 90 degrees to the side to read it *flat*. I'm SURE I saw this done on a site before, and even looked at the CSS they used to achieve it... but now I can't find the example, and Google isn't helping...
  7. sonicsnail

    product page with checkboxes, tick to customise and add to cost

    Hi all, I have been asked to create a page that should contain the specs of a PC system for sale. Below the specs should be some &quot;optional extras&quot; (CD burners, RAM, etc) which can be selected by the user. The (simple??!) idea is to have a &quot;Total cost&quot; at the bottom of the...
  8. sonicsnail

    JS read contents of another frame?

    A different site... different domain... different owner. (I DO have permission to use it for this purpose though!)
  9. sonicsnail

    JS read contents of another frame?

    I have a page where an IFrame opens up with some searched-for content (after form submission). What I'd like to do is search through that page for certain information, and capture it into a variable or object. Is this possible? thanks, Pete
  10. sonicsnail

    My script is too long - how can I reduce with Arrays + Document.Write?

    I'm struggling away with this.. This page clearly doesn't work however - when I _do_ get it to render the layers, the document.write clears the page before working. http://www.it-forums.org/pete/ozone/index2.htm *pulls hair out* Advice/suggestions? many thanks, Pete (here's the code)...
  11. sonicsnail

    My script is too long - how can I reduce with Arrays + Document.Write?

    xutopia - I've just read one of the FAQs you wrote - faq216-1753. This seems like EXACTLY what I'm looking for - but using alert rather than document.write... however I'm trying to use your code, but finding that it doesn't work - I'm guessing due to the fact that your code has been messed up...
  12. sonicsnail

    My script is too long - how can I reduce with Arrays + Document.Write?

    Ok, but I was really hoping that I could declare all of the sections with some kind of function/array that held and wrote everything: (title,option1,option2,content) so JS would build the page on the fly.. nice'n'clean, with potential to fill the array with serverside variables..??
  13. sonicsnail

    My script is too long - how can I reduce with Arrays + Document.Write?

    I am creating a page which is a Problem Solving Guide. http://www.it-forums.org/pete/ozone/index.htm but my code is HUGE due to the hidden div's. Can I reduce this by putting all the data into an array and document.write in a loop? (I think I can, but I don't know how!) many thanks, Pete

Part and Inventory Search

Back
Top