View Single Post
Old 26-04-2005, 11:31 AM   #2 (permalink)
WhiskyFudge
Administrator
 
WhiskyFudge's Avatar
 
Join Date: Oct 2003
Posts: 1,485
Not quite sure whats generating that error but it could be possibly:
Code:
command.CommandType = CommandType.StoredProcedure;
needs to be:
Code:
command.CommandType = CommandType.Text;
Also does your email errors work? If my memory servers me correct localhost will not work for the SMTPServer, you need to use mail.yourdomain.com.

Hope that helps
__________________
Jason Robbins
jason@catalyst2.com
WhiskyFudge is offline   Reply With Quote