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!

Recent content by maesb

  1. maesb

    Cannot send CC Mail

    bslintx, I'm just wondering, how did you place your codes into those neat textarea? is it by using the code tag? <code> Some codes here. </code>
  2. maesb

    Cannot send CC Mail

    Thanks bslintx and steven290.. i've now striped off everything like what bslintx suggested and seems like it's working fine now.. but i'm still not sure what exactly cause it to go wrong in the first place. I tried hardcoding the From, To and Cc to my own email account and it looks like if i...
  3. maesb

    Cannot send CC Mail

    Hi bslintx, I've tried using small cap cc and now i've assigned the objMail.To , objMail.cc and objMail.From email to my email acc, which is valid. But so far i have only received 1 mail. The CC email just doesn't seem to be able to get through. I've even copied your code and try it out...
  4. maesb

    Cannot send CC Mail

    Hi.I'm trying to send out an email using the following to user1 and CC to user2. User1 is able to receive the email but not user2. Set MyCDONTSMail2 = Server.CreateObject("CDONTS.NewMail") HTML = "<!DOCTYPE HTML PUBLIC""-//IETF//DTD HTML//EN"">" HTML = HTML & "<html>" HTML = HTML & "<head>"...
  5. maesb

    Using wrong index

    Hi Musafa, The database structure of both users are the same as i exported user1 and imported the tables into user2. So i assume the permission should be the same? The only difference i know of is that user1 and user2 are using a different table_space. does that answer your question?
  6. maesb

    Using wrong index

    i've got 2 different users with the same set of database, but when i run the same query on both users, they seem to be using different indexes to run the query. How do i make them use the same index? Following is my query : select a.cust,(b.dorq-b.qrtn) as qnty from soinno a, ptdord b, socrsd...
  7. maesb

    SMTP Virtual Server - Cannot send Email

    I forgot to mention that my colleague tried the same method using his PC and there's no problem sending out the email.
  8. maesb

    SMTP Virtual Server - Cannot send Email

    Hi.. I posted this in the IIS forum but there's no reply. So I figured I'll try to post it here. I coded something in asp which automatically sends out an email whenever user hits a button. My script works alright, no error message or anything, but my mail got stuck in the...
  9. maesb

    SMTP Virtual Server - Cannot send Email

    Hi.. I'm not very familiar with IIS, and i have a problem sending email using the SMTP Server. I coded something in asp which automatically sends out email whenever user hits a button. My script works alright, no error message or anything, but my mail got stuck in the C:\Inetpub\mailroot\Queue...
  10. maesb

    special charater found

    Hi tsuji, Thanks a lot for the reply. I've found out what's the problem. I'm now replacing it with vbCrLf and it works fine now! FARM=replace(Trim(objRS("farm")),vbCrLf," ") thanks again :)
  11. maesb

    special charater found

    travisbrown, response.write will not be able to see what's the problem, the display will be "CRT ( A68LZU185 ), " which looks very normal, but in the table, it's stored as a black box. any idea?
  12. maesb

    special charater found

    Hi, I found a special character in my database table which gives my asp page an error when loading. It's a black colour box at the end of my string. I'm not sure how the user key in the character, but my guess is that it's a carriage return. So, i try to get rid of it by doing this : <code>...
  13. maesb

    a simple question

    hi, this question may sound a bit silly. how do i redirect user to a mainpage.asp when user enters my link for example, http://mae/svc ? thanks..
  14. maesb

    combining columns

    why didn't i think of that? lol.. thanks a lot.
  15. maesb

    combining columns

    Hi.. I'm trying to query a few columns from my table, but i would like it to return those few columns as one. my table looks something like this : add1 add2 add3 Unit 101 East Malvern Caulfield i want to select add1, add2 and add3 as address, with a comma as a...

Part and Inventory Search

Back
Top