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 IamaSherpa 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. EllenWI

    ASP is being blamed help

    Brad... A lot of what has already been said should resolve both issues. ASP operates off the kernal on NT servers. If a page doesn't clear objects out of memory they are retained there as long as the service is active. As well as checking for proper closing of your database make sure you...
  2. EllenWI

    Response.Redirect compatibility ?

    Try it without the parenthesis. Sometimes it works enclosed and other time they interfere.
  3. EllenWI

    I have ASP upload/download scripts.

    I would be interested as well. Ellen.Kozel@sschc.org
  4. EllenWI

    Error in respons.write code

    When using fields in a recordset the correct syntax is "RS("Field Name"). In your second example rs(id_number) should read rs("id_number").
  5. EllenWI

    hi, i am trying to set up an OLEDB

    I see your trying to use a DSNless connection. First of all SQLServers use the computer name to indentify itself. Here's a connect string that works. ConnectString = "Provider=S Q L O L E D B; DATA SOURCE=(Computer name where SQLServer exists);UID=sa;PWD=;DATABASE=(Database name) &quot...
  6. EllenWI

    How do you remove intial values from text box with reset

    Thanks Pete.. sometimes I have a brain dead moment..lol.
  7. EllenWI

    How do you remove intial values from text box with reset

    I'm building an application that requires the initial page to be filled with default values in the text boxes. What I'm looking for is a routine that will clear the boxes of the initial values when I press reset.
  8. EllenWI

    Can a global.asa set two db connections?

    I never use the global.asa for database connections. Instead I create a configuration include with seperate database logins. This way I can close the connections right after I pull my data and never have a problem. If your using and access or SQL database this will work. By creating a...
  9. EllenWI

    Additional email addresses

    Here's an easy Script I use. <% Dim myMail Set myMail = Server.CreateObject(&quot;CDONTS.Newmail&quot;) myMail.From = &quot;name&quot;, &quot;name@your.com&quot; myMail.To = &quot;party1&quot;, &quot;party1@your.com&quot;; &quot;party2&quot;, &quot;party2@your.com&quot; myMail.Subject =...

Part and Inventory Search

Back
Top