MS Access 2000/2003 database

Discussion in 'Pre-sales questions' started by Guest, Jun 23, 2010.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Guest

    Guest Guest

    We are considering using your web host. We use Microsoft Access 2000 database. Do you use DNS connections?

    Do you use Persits AspUpload?

    Use CDO to send email?

    Our current web host is unstable with the application pool for the database. This is a big concern for us. Will we be assigned to our own application pool where we will not be affected from other databases?

    When migrating from one host to another, what procedures do you suggest for testing before closing out the old web host?

    Thanks
     
  2. Hi,
    We can help you with file uploads, email and those versions of Access, no problem.
    I don't think CDO is supported but...
    There are multiple methods for sending mail, with Classic ASP it works great like this:
    <%
    strHost = "localhost"
    If Request("Send") <> "" Then
    Set Mail = Server.CreateObject("Persits.MailSender")
    Mail.Host = strHost
    Mail.From = Request("From") ' From address
    Mail.FromName = Request("FromName") ' optional
    Mail.AddAddress "[email protected]", "Mark" 'Request("To")
    Mail.Subject = "Contact page" 'Request("Subject")
    Mail.Body = Request("Body")
    strErr = ""
    bSuccess = False
    On Error Resume Next
    Mail.Send
    If Err <> 0 Then
    strErr = Err.Description
    else
    bSuccess = True
    End If
    End If
    %>
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page