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 TouchToneTommy 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: *

  1. REB0RN

    Writing VERY large strings to SQL

    When I try to add to this field, it is limited in how many characters it can store (contrary to what I read). Is there a datatype that doesn't have a limit? I need to store large documents in SQL. Some of these can be 10 pages long. Again, I know this not the way to go about this, however...
  2. REB0RN

    Writing VERY large strings to SQL

    I need to do 2 things (I don't like the idea of doing it, however sometimes you're told what to do, not asked) 1) Write all html content pages to SQL. The problem with doing so is that VarChar can only hold so much. I've tried using the image datatype, however have had no luck. I've did an...
  3. REB0RN

    SELECT NULL & NOT NULL Values

    I'm trying to query SQL and pull back how many times a record appears in a table. This record may not appear. SELECT tblMenuData.MENU_LINK, COUNT(tblIISLog.LOG_FILE) AS Expr1 FROM tblMenuData INNER JOIN tblIISLog ON tblMenuData.MENU_LINK = tblIISLog.LOG_FILE GROUP BY tblMenuData.MENU_LINK...
  4. REB0RN

    SQL Hell

    You forgot your equals sign: Wrong: <td class=&quot;dataContent&quot;> <%RS(&quot;TelNo&quot;)%></td> Right: <td class=&quot;dataContent&quot;> <%=RS(&quot;TelNo&quot;)%></td> REBORN ------------------------ Lunchlady Doris: At last the world is safe. Eh fallout boy? Ralph: What's for lunch...
  5. REB0RN

    Always On Top

    I'm looking for a way to have a window always appear on top, while still being able to use and view the web page in behind without using <body onblur=&quot;self.focus()&quot;>. The window should be able to be minimized when needed. IE5 REBORN ---------------------- Lunchlady Doris: At last...
  6. REB0RN

    Saving images to harddrive from remote server

    Are you using a database to store the image locations? REBORN ---------------------- Lunchlady Doris: At last the world is safe. Eh fallout boy? Ralph: What's for lunch tommorrow? - NEXT Chicken necks?
  7. REB0RN

    CDONTS or any other COM to send mail under PWS

    If you're trying to avoid IIS than I'd suggest switching to a different scripting language :0) Can you use CDONTS? REBORN ------------------ Lunchlady Doris: At last the world is safe. Eh fallout boy? Ralph: What's for lunch tommorrow? - NEXT Chicken necks?
  8. REB0RN

    Saving images to harddrive from remote server

    >>How can I get ASP to get the physical name of this image >>to either place in a IMG tag, or to store directly on the >>hard disk? This is too vague to answer your question. What exactly would you like this string to do? Return the image name? Return the image? In a new window? Are you using...
  9. REB0RN

    Hide Parameters in the URL

    I would suggest using the form POST method as I'm deadly opposed to the GET & Session methods. Try this <form action=&quot;ReceivingPage.asp&quot; method=&quot;post&quot;> <!-- This will depend of your method of retrieving ID --> ID <input type=&quot;text&quot; name=&quot;ID&quot;><br>...
  10. REB0RN

    CDONTS ASP script only works for external domains

    Post your CDONTS code so we can take a look at it. How is your mail delivered (eg: Exchange, POP3)?

Part and Inventory Search

Back
Top