Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Javascript] Email problem on Win2000 (outlook2000) and NT4.0(outlook97)
- From: javascript@xxxxxxxxxx (Sinit Pantudom)
- Subject: [Javascript] Email problem on Win2000 (outlook2000) and NT4.0(outlook97)
- Date: Thu, 27 Sep 2001 14:58:55 -0700
Hi,
I have written a function that walk through the database and grap all lists
of users to be shown on the 'To:' line on a default email client (outlook)
when a user click a 'send email' button on the web page. The function works
perfectly under Window 2000 with Outlook 2000. But when I tested it under
WindowNT with Outlook 97, the lists of users are cut off half way. For
example, the complete list on the To: field on Outlook under Win2000 is
aa@xxxxxx; bb@xxxxxx; cc@xxxxxx
But under WinNT4.0 it is like this
aa@xxxxxx; bb@xxxxxx; cc@
The lists are not completed. Is there any suggession on this issue? I just
guess it may be something about WinNT4.0 and Outlook 97. Am I right or
wrong?
The function looks like this:
function getUserEmail() {
UserEmail="";
//This part is the code to access the database
............
//This part is to grap the users
for (var i=0; i<userlist.length; i++) {
UserEmail += userlist[i].Email+";"
}
if(UserEmail.length > 1) mailto(UserEmail);
}
Thanks
SN
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
- Prev by Date: [Javascript] Esther Strom/McDougal/hmco is out of the office.
- Next by Date: [Javascript] Using data with a single quote in a Javascript open
- Previous by thread: [Javascript] Esther Strom/McDougal/hmco is out of the office.
- Next by thread: [Javascript] Using data with a single quote in a Javascript open
- Index(es):