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 Chriss Miller 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: *

  1. Rachel80

    IIS's SMTP server can't send out email

    My SMTP service generates this warning message: Message delivery to the remote domain 'yahoo.co.uk' failed. The error message is 'An internal DNS error caused a failure to find the remote server.' where xx@yahoo.co.uk is the receipent email address. Do I have to configure DNS settings? I...
  2. Rachel80

    IIS's SMTP server can't send out email

    Oops, typo error.. in 2nd sentence, I mean "tried some Email components"
  3. Rachel80

    IIS's SMTP server can't send out email

    I do have cdonts.dll installed. I tried some SMS components downloaded from the net and used their sample codes (ASP) to try out but they simply wont send emails. It only works when I use JMail component (not CDONTs) with PWS. I could do this but I wanna use IIS instead of PWS. Any suggestions...
  4. Rachel80

    IIS's SMTP server can't send out email

    Hi, I've similar problem.. my emails are actually kept in the Queue folder instead of being sent out. How can I configure the settings to send out emails using the IIS SMTP Server? Thanks.
  5. Rachel80

    File Upload Error: Cannot call BinaryRead

    did u use <form enctype=&quot;multipart/form-data&quot;> ? then the next page that requests the form variables are using Uploader.Form(&quot;samplefile&quot;), instead of Request.Form(&quot;samplefile&quot;). It causes the binary problem (in my case because i did use request.form for the other...
  6. Rachel80

    validation for spaces

    ok, thanx alot!! :-P
  7. Rachel80

    validation for spaces

    Hi, I'm trying to validate some mandatory fields to be non-spaces input. I tried isEmpty() but it regard the spaces as 'empty'. Thus spaces are still submitted; I want client-side validation for these fields. Pls help, thanx!
  8. Rachel80

    How to validate an array of checkboxes named in ASP?

    oh thanx so much, your code is great! :-D Very helpful to me, thanx again!
  9. Rachel80

    How to validate an array of checkboxes named in ASP?

    Hi, i have an array of 19 checkboxes as follows: <% dim temp_id(19) for i=0 to 18 temp_id(i) = &quot;id&quot; & i next for j=0 to 18 %> <input type=&quot;text&quot; name=&quot;<%=temp_id(j)%>&quot; size=15 maxlength=&quot;20&quot;> <% next %> As shown, each checkbox has a...
  10. Rachel80

    File Upload Error: Cannot call BinaryRead

    I need server side validation for checking against the value in a database..
  11. Rachel80

    File Upload Error: Cannot call BinaryRead

    yes, when the user on client side has input the file to upload or not.. the VBScript cannot get the right value of no. of files uploaded (in Netscape)
  12. Rachel80

    File Upload Error: Cannot call BinaryRead

    bcoz Netscape does not check for the number of files uploaded.. cannot validate :-( so i suspected its Netscape prob since it does not support VBScript.
  13. Rachel80

    File Upload Error: Cannot call BinaryRead

    1) i just realised that IE and Netscape recognise the image path differently?? one allows virtual path whereas the other requires absolute path..?? 2) the prob i have been facing is because I'm using Netscape! When i tested with IE the file uploads properly and with the validation. Netscape...
  14. Rachel80

    File Upload Error: Cannot call BinaryRead

    in another words, I need to validate the field <input type=&quot;file&quot; name=&quot;file1&quot;>: if there is value or input from user, then update in database, else no need to update and upload image (since there is not input from user) by the way, upload files function is restricted to any...
  15. Rachel80

    File Upload Error: Cannot call BinaryRead

    oh yes.. Uploader.Form does work, thanx! however, now there is another problem :-( When updating the form with text fields and &quot;file&quot; fields, I cannot check if the user has input any value in the <input type=&quot;file&quot; name=&quot;file1&quot;> i then use Uploader.Form(file1) to...
  16. Rachel80

    Making checkboxes and radio buttons readonly

    do u mean to just display the fields in checkbox and radio buttons BUT not allow modifications? Try this: <input type=&quot;radio&quot; name=&quot;field1&quot; value=&quot;xx&quot; disabled> the same should apply to checkbox :-P It might only for IE, not Netscape!
  17. Rachel80

    File Upload Error: Cannot call BinaryRead

    my problem here is: When i use <form enctype=&quot;multipart/form-data&quot;>, image can be uploaded but all form request variables return blank (or null?). Thus i remove &quot;form-data&quot;.. Now form.request works, but uploaded file could not be read, thats why i have this error...
  18. Rachel80

    File Upload Error: Cannot call BinaryRead

    while testing the downloaded sample, i used different folder.. i did not use back that same folder and it shouldn't matter if i use different files too..
  19. Rachel80

    Listing File Names Inside a folder

    yes, of course u can! try this ;-) <% Dim fso ' File System Object 'create Scripting.FileSystemObject object. 'We will be using this FileSystemObject to 'iterate through the files in &quot;uploaded&quot; folder and display a list of them. Set fso =...
  20. Rachel80

    File Upload Error: Cannot call BinaryRead

    Hi, I'm using a sample (upload.asp) downloaded from http://www.asp101.com/articles/jacob/scriptupload.asp to try uploading files to a specified folder.. The sample works fine but not after integration with my code :-( I get the following error: Request object error 'ASP 0206 : 80004005'...

Part and Inventory Search

Back
Top