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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aspnet98

  1. aspnet98

    cdos

    That worked! I am not sure I understand the error log part? how to I write to a error log the message?
  2. aspnet98

    cdos

    I am using the following cdos code to connect to a remote smtp mail server. it works perfectly when a valid email address is given, if a fake one is given then it errors the page. is their anyway to prevent this? i tried the javascript approach but it still fails sometimes. Const...
  3. aspnet98

    sql connection issue

    :( You guys are right. They told me they do not allow these connection to be done on the web server i am hosted by. Man that stinks, anyway around that? I have a domain www.something.com and need to migrate to a dedicated server i just bought through another company. it is setup and...
  4. aspnet98

    sql connection issue

    The dedicated server has no firewall. The web server may. I did a netstat -an and do not see 1433 listening but it says it is set in sql server manager.
  5. aspnet98

    sql connection issue

    tcp/ip has to be because it works perfeclty on the same server. can you suggest anymore connection strings?
  6. aspnet98

    sql connection issue

    my server does not have a name it is just an ip address. i do not understand that full the dns server stuff you mentioned. how do i get it to authenticate via SQL so this is not an issue?
  7. aspnet98

    sql connection issue

    BB Same result, it just hangs.... This is so frustration because it works perfectly while on the same server? There has to be something wrong somewhere with my code...
  8. aspnet98

    sql connection issue

    Hello, I am using the following connection string on my hosted website plan: dim DbConn Dim dbDir Set dbConn = Server.CreateObject("ADODB.Connection") dbConn.ConnectionTimeout = 0 dbConn.CommandTimeout = 0 DbConn.Open("DRIVER={SQL Server};SERVER=xx.xx.xx;DATABASE=test;UID=tes;pwd=test;") When...
  9. aspnet98

    connection string to sqlserver

    Hello, I am using the following connection string on my hosted website plan: dim DbConn Dim dbDir Set dbConn = Server.CreateObject("ADODB.Connection") dbConn.ConnectionTimeout = 0 dbConn.CommandTimeout = 0 DbConn.Open("DRIVER={SQL Server};SERVER=xx.xx.xx;DATABASE=test;UID=tes;pwd=test;") When...
  10. aspnet98

    multiple filters

    I am using the following code to set a filter on one of my forms: Private Sub Form_Open(Cancel As Integer) 'Set unbound textbox = to login name. Me.LoginName = strUserName 'Apply filter based on Username field. Me.Filter = "[ReportsTo] = '" & Me.LoginName & "'" Me.FilterOn = True End Sub I...
  11. aspnet98

    email

    paulha, Will I be able to use CDOs on my asp webpages?
  12. aspnet98

    email

    ?
  13. aspnet98

    install issue

    I have a Windows 2000 server and a static ip address. I use this a web server for a website. I want to install sometime of email program so i can have email addresses for my website. I use CDOS on asp web pages a lot and want to be able to fire off emails from this web server now. i have no...
  14. aspnet98

    email

    I have a Windows 2000 server and a static ip address. I use this a web server for a website. I want to install sometime of email program so i can have email addresses for my website. I use CDOS on asp web pages a lot and want to be able to fire off emails from this web server now. i have no...
  15. aspnet98

    explain owners of db

    sqlsis, sp_changeowner is my new favorite SP. I will be using it 1000 times today.....

Part and Inventory Search

Back
Top