Recent Comments
  • Keine Kommentare vorhanden.
Popular Articles
Upload a file using asp
Upload a file using asp...
This shows you how to upload a file using asp. Note you will need the aspupload component from Persists software. Take the object from a form Now save it from the form. This is the file name it was saved as SHARETHIS.addEntry({ title: "Upload a file using...
Take a user back from w...
This javascript shows you how to take a visitor back where they came from. SHARETHIS.addEntry({ title: "Take a user back from where they came from", url: "http://code.netexceed.com/javascript/take-a-user-back-from-where-they-came-from/" });
Do loop in asp
Do loop in asp...
This is an example of a do look in asp. Do While Not (objAppID.EOF) objAppID.MoveNext Loop SHARETHIS.addEntry({ title: "Do loop in asp", url: "http://code.netexceed.com/asp/do-loop-in-asp/" });
Send an attachment in a email using asp
Send an attachment in a...
This shows you how to send a attachment via email using asp. strFile = "c:\dir\file.vcs" Set oNewMail = Server.CreateObject("CDONTS.NewMail") oNewMail.From = "fuscptc@eximc.nam.dow.com" oNewMail.To = "u369373@eximc.nam.dow.com" oNewMail.Subject = "Updated Education &...