Click here to Skip to main content
16,003,404 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: About using MsgBox() in web Pin
Ali AlOmairi (TJIC)3-Mar-11 3:21
Ali AlOmairi (TJIC)3-Mar-11 3:21 
GeneralRe: About using MsgBox() in web Pin
R. Giskard Reventlov3-Mar-11 4:40
R. Giskard Reventlov3-Mar-11 4:40 
GeneralRe: About using MsgBox() in web Pin
JV99993-Mar-11 4:40
professionalJV99993-Mar-11 4:40 
GeneralRe: About using MsgBox() in web Pin
Not Active3-Mar-11 12:55
mentorNot Active3-Mar-11 12:55 
GeneralRe: About using MsgBox() in web Pin
Ali Al Omairi(Abu AlHassan)4-Mar-11 11:20
professionalAli Al Omairi(Abu AlHassan)4-Mar-11 11:20 
GeneralRe: About using MsgBox() in web Pin
Ali Al Omairi(Abu AlHassan)4-Mar-11 11:32
professionalAli Al Omairi(Abu AlHassan)4-Mar-11 11:32 
GeneralRe: About using MsgBox() in web Pin
Pete O'Hanlon3-Mar-11 5:59
mvePete O'Hanlon3-Mar-11 5:59 
GeneralRe: About using MsgBox() in web Pin
Ali Al Omairi(Abu AlHassan)4-Mar-11 11:24
professionalAli Al Omairi(Abu AlHassan)4-Mar-11 11:24 
GeneralRe: About using MsgBox() in web Pin
Pete O'Hanlon5-Mar-11 10:03
mvePete O'Hanlon5-Mar-11 10:03 
GeneralRe: About using MsgBox() in web Pin
Ali Al Omairi(Abu AlHassan)6-Mar-11 1:52
professionalAli Al Omairi(Abu AlHassan)6-Mar-11 1:52 
GeneralRe: About using MsgBox() in web Pin
Bernhard Hiller3-Mar-11 20:31
Bernhard Hiller3-Mar-11 20:31 
GeneralRe: About using MsgBox() in web Pin
Ali Al Omairi(Abu AlHassan)4-Mar-11 11:35
professionalAli Al Omairi(Abu AlHassan)4-Mar-11 11:35 
QuestionUnable to play sound using Object tag in ASP.NET Pin
AmbiguousName2-Mar-11 10:37
AmbiguousName2-Mar-11 10:37 
AnswerRe: Unable to play sound using Object tag in ASP.NET Pin
JV99993-Mar-11 4:41
professionalJV99993-Mar-11 4:41 
QuestionBase64 converter Pin
swissmiss862-Mar-11 10:14
swissmiss862-Mar-11 10:14 
AnswerRe: Base64 converter Pin
TheGreatAndPowerfulOz2-Mar-11 11:58
TheGreatAndPowerfulOz2-Mar-11 11:58 
GeneralRe: Base64 converter Pin
swissmiss863-Mar-11 5:33
swissmiss863-Mar-11 5:33 
QuestionSession- passing and changing value between forms Pin
jaffa2-Mar-11 5:08
jaffa2-Mar-11 5:08 
AnswerRe: Session- passing and changing value between forms Pin
Piccadilly Yum Yum3-Mar-11 4:00
Piccadilly Yum Yum3-Mar-11 4:00 
QuestionAccess is denied while going to create folder in program file through vb.net Pin
Hesmsys2-Mar-11 0:45
Hesmsys2-Mar-11 0:45 
AnswerRe: Access is denied while going to create folder in program file through vb.net Pin
phil.o2-Mar-11 1:57
professionalphil.o2-Mar-11 1:57 
AnswerRe: Access is denied while going to create folder in program file through vb.net Pin
Bernhard Hiller2-Mar-11 4:09
Bernhard Hiller2-Mar-11 4:09 
AnswerRe: Access is denied while going to create folder in program file through vb.net Pin
MikkelAndersen2-Mar-11 4:24
MikkelAndersen2-Mar-11 4:24 
QuestionFORM Submit email not working using ASP Pin
GreatScott11-Mar-11 14:03
GreatScott11-Mar-11 14:03 
AnswerRe: FORM Submit email not working using ASP Pin
pmpdesign2-Mar-11 18:27
pmpdesign2-Mar-11 18:27 
Wow, ASP. Thats going back a bit.

Here is an example
Set iMsg = CreateObject("CDO.Message")
				Set iConf = CreateObject("CDO.Configuration")
				Set Flds = iConf.Fields

				With Flds
				  .Item("http://schemas.microsoft.com/cdo/configuration/sendusing")		= 2 
				  .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")		= smtpserver
				  .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")	= 25
				  .Update
				End With

					strDesc = "Message contents"
				With iMsg
			 		Set	.Configuration = iConf
			  	   		.To = "myrealemailaddress@myrealemailcompany.com"
			     			.From = "mymail@mydomain.com"
		  				.Sender = "mymail@mydomain.com"
						.ReplyTo = "mymail@mydomain.com"
		 	  			.Subject = "Sending email with CDO"
			   			.textbody = strDesc
		   				.Send
					End With				

				Set iConf= Nothing


You may have to tweak it a little, but should work.

Make sure IIS is configured to serve ASP pages as well. I don't think IIS 6+ is configured to do so by default.

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.