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 bkrike 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
  • Content: Threads
  • 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

    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...
  13. 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
  14. 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
  15. 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...
  16. scottRen

    javascript menu

    Hi i'm creating a cd of some html pages and was wondering if with JS it is possible to obtain names of each file in a certain folder on the cd. I'm hoping to create a menu system on a autorun cd that is dynamic to the file names (all being type either jpg or gif) in a specific folder.
  17. scottRen

    Server Error in '/' Application

    Hi I'm newish to windows2003 server and was wondering why when i run an aspx file i get the following message: Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the...
  18. scottRen

    info on cross domain db update

    I was wondering if sql allow to be updated from a different ip than what the sql2000 server uses. Also wanting to know if the same cross domain updating can be done from sql to oracle? thanks db gurus!
  19. scottRen

    reinstall os

    Hi, i had to reinstall the os, things are set up so the os is on 1 hd and the sql db is on its own hd. When i reinstalled the os, i noticed that enterprise manager for sql isn't listed under 'start' on the desktop. Do i have to reinstall sql2000 server or since its on its own hd, i just need...
  20. scottRen

    like an anchor

    hi, i have a button that loads something into a higher level. Since the button is at the bootom of the page how can it be so when released the page position in the html window is at the top, thanks

Part and Inventory Search

Back
Top