Click here to Skip to main content
15,920,031 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Datagrid sorting / Dataview sorting Pin
Gavin Jeffrey11-Oct-04 22:06
Gavin Jeffrey11-Oct-04 22:06 
GeneralRe: Datagrid sorting / Dataview sorting Pin
sucharita12-Oct-04 10:51
sucharita12-Oct-04 10:51 
GeneralWeb.Config Pin
Maharishi Bhatia3-Oct-04 20:54
Maharishi Bhatia3-Oct-04 20:54 
GeneralRe: Web.Config Pin
Steven Campbell4-Oct-04 5:35
Steven Campbell4-Oct-04 5:35 
GeneralRe: Web.Config Pin
Maharishi Bhatia5-Oct-04 2:04
Maharishi Bhatia5-Oct-04 2:04 
GeneralRe: Web.Config Pin
Steven Campbell5-Oct-04 6:34
Steven Campbell5-Oct-04 6:34 
Generalsaving image on sql server 2000 Pin
firad3-Oct-04 20:33
sussfirad3-Oct-04 20:33 
GeneralCDONTS not supported need to change to CDO or CDOSYS Pin
amorlatina3-Oct-04 13:41
amorlatina3-Oct-04 13:41 
below is what i have apparently it is not supported on windows server 2003:

Public Sub SendEmail(ToWho, Subj, Mess)

Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

With objMail

.MailFormat = CDOMailFormatMime
.To = ToWho
.From = Application("Support_Email")
.Subject = Subj
.Body = Mess
.Send

End With

Set objMail = Nothing

End Sub


My software developer said i should replace it with:

Public Sub SendEmail(ToWho, Subj, Mess)

Dim objMail
Set objMail = Server.CreateObject("CDO.Message")


With objMail

'objMail.MailFormat = CDOMailFormatMime
objMail.To = ToWho
objMail.From = Application("Support_Email")
objMail.Subject = Subj
objMail.HTMLBody = Mess
objMail.Send()
End With
Set objMail = Nothing

End Sub

But it doesnt work either any help is appreceiated
thanks
Frown | :(

Just learning
Questionhow can i start in creating an ASP.Net forum using c# Pin
Eng Nashwa2-Oct-04 23:19
Eng Nashwa2-Oct-04 23:19 
AnswerRe: how can i start in creating an ASP.Net forum using c# Pin
sefaen3-Oct-04 14:49
sefaen3-Oct-04 14:49 
AnswerRe: how can i start in creating an ASP.Net forum using c# Pin
V.4-Oct-04 0:13
professionalV.4-Oct-04 0:13 
Generalpopulating grid from xml - a new logic needed. Pin
manivannan.p2-Oct-04 2:07
manivannan.p2-Oct-04 2:07 
GeneralCSS Pin
sessie1-Oct-04 5:22
sessie1-Oct-04 5:22 
GeneralPictures on web services Pin
Anonymous1-Oct-04 0:59
Anonymous1-Oct-04 0:59 
GeneralError MySQL Error: 1064 - subqueries Pin
Ovidiu Caba1-Oct-04 0:21
Ovidiu Caba1-Oct-04 0:21 
Questionhow to saves images Pin
Anonymous30-Sep-04 22:07
Anonymous30-Sep-04 22:07 
AnswerRe: how to saves images Pin
Pradeep Shamarao28-Oct-04 19:22
Pradeep Shamarao28-Oct-04 19:22 
GeneralXHTML 1.1 Pin
Jacob Hammack30-Sep-04 21:26
Jacob Hammack30-Sep-04 21:26 
GeneralRe: XHTML 1.1 Pin
Tomas Petricek7-Oct-04 13:03
Tomas Petricek7-Oct-04 13:03 
GeneralRe: XHTML 1.1 Pin
Jacob Hammack7-Oct-04 16:25
Jacob Hammack7-Oct-04 16:25 
GeneralJavaScript Picture Viewer Pin
sefaen30-Sep-04 16:54
sefaen30-Sep-04 16:54 
GeneralRe: JavaScript Picture Viewer Pin
Tomas Petricek7-Oct-04 13:13
Tomas Petricek7-Oct-04 13:13 
QuestionASPX/Perl stepping on each other? Pin
webjunkie30-Sep-04 16:23
webjunkie30-Sep-04 16:23 
Generalpadding style problem... Pin
theJazzyBrain30-Sep-04 9:06
theJazzyBrain30-Sep-04 9:06 
GeneralRe: padding style problem... Pin
benjymous1-Oct-04 0:10
benjymous1-Oct-04 0:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.