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
Riepilogo AI: 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.
Codice sorgente
Upload
<!--- 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 = "[email protected]"
smtp.From = "[email protected]"
smtp.FromName = "[email protected]"
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
%>
Commenti originali (3)
Recuperato da Wayback Machine