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

    alert when server down

    Does anyone know how i can receive an email when the server goes down? I was thinking about something like another remote server pings every 1/2 hour the other server, and if the other server is unreachable, then an email is sent out. any ideas on how to receive emails about a server being...
  2. scottRen

    SQL Server error '80004005'

    hi i' getting this error: Microsoft OLE DB Provider for SQL Server error '80004005' [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied. I thought it was the mdac so i upgraded to version 2.8, still the same problem, i testing the connection string with the sa...
  3. scottRen

    iis6 fweb file compression

    can anyone tell my what to search under, or have any information on how to enable file compression, to server faster web pages. I found out that iis6 has a file compression ability but can't seen to find where to set it attributes. thanks
  4. scottRen

    submitting forms via CDO

    Hi, i'm hoping someone can help me get windows2003 set for smtp. I went into control panel and installed component, under details of iis6, of smtp. it asked for my disk and everything worked, i have an asp page that creates the cdo object like so: Set myMail=CreateObject("CDO.Message") When i...
  5. scottRen

    checking string for characters

    i have a string containing a date, the format can be either containing a / or a - as a divider between the numbers I would like to be able to determine if the string contains a / or a - so i can response.write something different for each case thanks
  6. scottRen

    check string to see if in certain format

    How can i say: If Request.QueryString("date") contains a / as the 5th character from the end Then thanks
  7. scottRen

    page revalidation

    i was wondering if there is a folder option so the pages do not get cached by the user, instead of using server side web code to stop page caching thanks
  8. scottRen

    history.go(-1)

    can't seem to get this to work.. on the last frame: getURL("history.go(-1)") thanks
  9. scottRen

    deleting record by id number for access

    this is what i have: id = request.form("event_id") //when i response.write the id i currently get a 40 value, //i concure with the db and the 40th record does exist Set conn = Server.CreateObject("ADODB.Connection") conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\path\der.mdb;" Set...
  10. scottRen

    dsnless odbc access db

    can't seem to get this connection stinr working....any ideas? MyConnection.Open "Driver={Microsoft Access Driver (*.mdb)};" & _ "Dbq=c:\path\dbName.mdb;" .Write "<Select name=Myselectbox><option value="""">Please Select</option>" Set Myrs = MyConnection.Execute("SELECT name FROM...
  11. scottRen

    red hat 9

    using red hat9 i'm getting: rndc: connect failed i ping 127.0.0.1 and all is fine. also getting: nfs failed any ideas?
  12. scottRen

    drop box &quot;selected&quot; problem

    thanks! that did the trick!!!!
  13. scottRen

    drop box &quot;selected&quot; problem

    yes i already tried that without luck: For ll_temp = 1 to 12 .write "<option value=" & ll_temp If (a2 = ll_temp) Then .Write " SELECTED" End If .write ">" & MonthName( ll_temp, True ) & "</option>" & vbcrlf Next
  14. scottRen

    drop box &quot;selected&quot; problem

    Hi i'm response.writing a drop box, here the section of the page for it: .Write "<select NAME='li_start_dt_month'>" For ll_temp = 1 to 12 .write "<option value=" & ll_temp .write ">" & MonthName( ll_temp, True ) & "</option>" & vbcrlf Next .Write "</select>" I have...
  15. scottRen

    manipulating a small string for its chars

    i have a string via url to another page, the string consists of the day-month-year, in a format like: xx-xx-xxxx I would like to set a var (lets say a2a) to the number to the left of the first hyphen, then set a3a to the numbers between the hypens and finally set a4a to the numbers after the...
  16. scottRen

    manipulating a small string for its chars

    string: 4-20-2005 how can i set a2a to be the value of the numbers to the left of the first - a3a to be the number between each - and a4a to be the last four number at the end of the string possible variations on the string are: 12-11-2001 3-9-2005 13-5-2002 2-19-2003
  17. scottRen

    table question - newbie

    hi i have a table called users that is set up with column names and has data in it. I would like to create another table called people which needs to have identical column names, i don't care about the data. How can i easily accomplish this? thanks
  18. scottRen

    updating 2 dbs at two different ips

    so now i have linked servers... how to make it secure... what can be done...?
  19. scottRen

    updating 2 dbs at two different ips

    thanks, so basically the asp page call a stored procedure to update the table and the stored procedure also update the other db which is external.... how on setting up a linked server... is software needed? is there an option for installing linked server components? thanks
  20. scottRen

    updating 2 dbs at two different ips

    Hi, i'm looking for advice. I have two sql2k dbs, one of the dbs reside on the webserver. I have an asp page that updates a table in the db. I would like to update the other db at this time, but i was wondering if the connection string would be secure, as i need it to be. I was think some...

Part and Inventory Search

Back
Top