|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Posting code with no [code] or [php] tags
This is a small bug. The little javascript warning that shows if you forgot to post with [code] or [php] tags still shows up if you posted a title with your [code] tag, such as [code=Blah Blah Blah].
This happened to me when posting this post: http://forums.aspfree.com/asp-development-5/cdosys-error-151655.html
__________________
www.xoise.com - www.ourfreegames.com - www.playtouchgames.com - www.randomtools.net - www.xenocide-rpg.com |
|
#2
|
||||
|
||||
|
We are working on this issue now
|
|
#3
|
||||
|
||||
|
test post
Code:
Relevant Code
<%
Sub SendEmail(strTo, strFrom, strSubject, strBody)
Dim Mail, Config
Set Mail = Server.CreateObject("CDO.Message")
Set Config = Server.CreateObject("CDO.Configuration")
Config.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
Config.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
Config.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
Config.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
Config.Fields.Update()
Set Mail.Configuration = Config
With Mail
.From = strFrom
.To = strTo
.Subject = strSubject
.HTMLBody = strBody
.Send()
End With
Set Config = Nothing
Set Mail = Nothing
End Sub
'...
Call SendEmail("someone@somewhere.com", strName & " <" & strEmail & ">", strSubject, "Customer Name: " & strName & "<br />Relevant URL: " & strURL & "<br /><hr /><br />" & strBody)
%>
|
|
#4
|
|||||
|
|||||
|
test post
asp Code:
|
|
#5
|
||||
|
||||
|
This is fixed now, you may want to do a full page load to refresh all your cached JS files
|
![]() |
| Viewing: ASP Free Forums > Forum Information > Suggestions & Feedback > Posting code with no [code] or [php] tags |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|