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 &...
How to post a form
How to post a form...
How to post a form in html. SHARETHIS.addEntry({ title: "How to post a form", url: "http://code.netexceed.com/html/how-to-post-a-form/" });
Sending html based emails using asp
Sending html based emai...
This shows you how to send a html email using asp. Set objMailJ1 = CreateObject("CDONTS.NewMail") html = " ” html = html & “ ” html = html & “  Intranet ” html = html & “ ” objMailJ1.From=”intranet@no-spam.com” objMailJ1.To=”sender@no-spam.com” objMailJ1.Subject=”Subject...
Insert a row into sql using asp
Insert a row into sql u...
This shows you how to insert a row in sql using asp. strq1 = "INSERT INTO crs_job_listing (job_title, job_category, job_description) VALUES " strq = strq1 & "('" & job_title & "','" & job_category & "','" & job_description & "')" cnnConn.Execute...
Truncate the length of a variable in asp
Truncate the length of ...
Allows you to truncate the length of a variable in asp especially when displaying. SHARETHIS.addEntry({ title: "Truncate the length of a variable in asp", url: "http://code.netexceed.com/asp/truncate-the-length-of-a-variable-in-asp/" });
Meta refresh code...
This show you how to use a HTML meta refresh tag to refresh to the existing or another page.
Move a row from one table to another using sql and asp
Move a row from one tab...
This code will show you how to move a row from one table to another using ASP. This involves delete and insert into. strq = "INSERT INTO archive SELECT * FROM user_requests WHERE db_id =" & objGetForm("db_id") & ";" strq1 = "DELETE FROM user_requests WHERE db_id =" &...

« Previous Entries