Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Don Pacino #1
[11004] Valid name, no data record of requested type -ASPMAIL
hello,
I am getting the following error message
[11004] Valid name, no data record of requested type
when i run the following ASP MAIL script, why?
<%
' ASPMail(tm) from [url]www.serverobjects.com[/url]
' is not part of ASP per se,
' but a third party utility from serverobjects.com
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.RemoteHost = "mail.mywebaddress.co.uk"
Mailer.qmessage=true
Mailer.FromName = "Some Student"
Mailer.FromAddress = "somestudent@activeserverpages.com"
Mailer.AddRecipient "Charles Carroll","selfdestruct@learnasp.com"
Mailer.AddBCC "Sally Jones","selfdestruct@learnasp.com"
Mailer.Subject = "ASPMail Tutorial"
Mailer.BodyText = "Hi. Just trying the mail example" & vbCrLf
Mailer.BodyText = "Line 2"
Mailer.BodyText = "Line 3"
If Mailer.SendMail then
Msg = "mail sent sucessfully!"
Else
Msg = "mail <b>not</b> sent sucessfully"
msg = msg & "<br>" & mailer.response
End If
response.write Msg
set mailer=nothing
%>
Don Pacino Guest
-
Converting from data type varchar to data type money
Hi all, Tearing my hair out trying to figure this out. If anyone can provide any help i would greatly appreciate it. When I try to do an insert... -
Converting data type varchar to data type money
Hi all, Tearing my hair out trying to figure this out. If anyone can provide any help i would greatly appreciate it. When I try to do an insert... -
Either BOF or EOF is True, or the current record hasbeen deleted. Requested operation requires a current record
Can anyone pls help? I am getting the following error when search my database. "ADODB.Field (0x800A0BCD Either BOF or EOF is True, or the... -
Value can not be converted to requested type.
Having a peculiar problem running a MS-SQL 2000 Stored Procedure in CFMX6.1. SP works perfectly in Query Analyzer and has the right permissions for... -
Cast from type 'DBNull' to type 'String' is not valid error
Trying to add an insert button Sub btnAddRow_Click event for adding a row to the datagrid and dataset back to SQL. Had it working per the...



Reply With Quote

