<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6.2" -->
<rss version="0.92">
<channel>
	<title>Netexceed Code Library</title>
	<link>http://code.netexceed.com</link>
	<description>Jason Mohan's code snippets and library</description>
	<lastBuildDate>Fri, 24 Oct 2008 15:36:42 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Upload a file using asp</title>
		<description>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 ...</description>
		<link>http://code.netexceed.com/asp/upload-a-file-using-asp/</link>
			</item>
	<item>
		<title>Take a user back from where they came from</title>
		<description>This javascript shows you how to take a visitor back where they came from. 



 </description>
		<link>http://code.netexceed.com/javascript/take-a-user-back-from-where-they-came-from/</link>
			</item>
	<item>
		<title>Do loop in asp</title>
		<description>This is an example of a do look in asp. 


Do While Not (objAppID.EOF)

objAppID.MoveNext
Loop
 </description>
		<link>http://code.netexceed.com/asp/do-loop-in-asp/</link>
			</item>
	<item>
		<title>Send an attachment in a email using asp</title>
		<description>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 & Training Session"
    oNewMail.BodyFormat = 1
    oNewMail.MailFormat ...</description>
		<link>http://code.netexceed.com/asp/send-an-attachment-in-a-email-using-asp/</link>
			</item>
	<item>
		<title>How to post a form</title>
		<description>How to post a form in html.





 </description>
		<link>http://code.netexceed.com/html/how-to-post-a-form/</link>
			</item>
	<item>
		<title>Sending html based emails using asp</title>
		<description>This shows you how to send a html email using asp. 


		Set objMailJ1 = CreateObject("CDONTS.NewMail")

					html = ""
					html = html & ""
					html = html & "&#160;Intranet"
					html = html & ""
						objMailJ1.From="intranet@no-spam.com"
						objMailJ1.To="sender@no-spam.com"
						objMailJ1.Subject="Subject Line - " & vendor_name & ""
						objMailJ1.BodyFormat=0
						objMailJ1.MailFormat=0
						objMailJ1.Body=html
						objMailJ1.Send
 </description>
		<link>http://code.netexceed.com/asp/sending-html-based-emails-using-asp/</link>
			</item>
	<item>
		<title>Insert a row into sql using asp</title>
		<description>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 strq
 </description>
		<link>http://code.netexceed.com/asp/insert-a-row-into-sql-using-asp/</link>
			</item>
	<item>
		<title>Truncate the length of a variable in asp</title>
		<description>Allows you to truncate the length of a variable in asp especially when displaying. 



 </description>
		<link>http://code.netexceed.com/asp/truncate-the-length-of-a-variable-in-asp/</link>
			</item>
	<item>
		<title>Meta refresh code</title>
		<description>This show you how to use a HTML meta refresh tag to refresh to the existing or another page. 



 </description>
		<link>http://code.netexceed.com/html/meta-refresh-code/</link>
			</item>
	<item>
		<title>Move a row from one table to another using sql and asp</title>
		<description>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 =" & objGetForm("db_id") & ";"

cnnSimple.Execute strq
cnnSimple.Execute ...</description>
		<link>http://code.netexceed.com/asp/move-a-row-from-one-table-to-another-using-sql-and-asp/</link>
			</item>
</channel>
</rss>
