DiceRoller
Make dice animation with api, nice and powerfull i have include the images.Have fun :) Add many dice as you want,animation is done with 3D software. Please visit my new web site and see what you can do ! VB power !!! come and chat with me http://www.virtualgamer.t2u.com
AI
AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Source Code
Upload
If you have problems with the code below, check out version 2 -
I updated this code some time ago but it's been greatly overlooked!
http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=7537&lngWId=4
<!--- mailer.asp --->
<%
For Each x In Request.Form
message=message & x & ": " & Request.Form(x) & CHR(10)
Next
set smtp = Server.CreateObject("Bamboo.SMTP")
smtp.Server = "mail.YOURSEVER.com"
smtp.Rcpt = "YOU@YOURSERVER.com"
smtp.From = "user@YOURSERVER.com"
smtp.FromName = "user@YOURSERVER.com"
smtp.Subject = "Message Recieved From Web Form"
smtp.Message = message
on error resume next
smtp.Send
if err then
response.Write err.Description
else
response.redirect "/thanks.asp"
end if
set smtp = Nothing
%>
Original Comments (3)
Recovered from Wayback Machine