Click here to Skip to main content
15,925,181 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: User control - when and why?? Pin
hi_arv10-Aug-06 2:03
hi_arv10-Aug-06 2:03 
QuestionHelp with Set Up Pin
alexfromto9-Aug-06 10:20
alexfromto9-Aug-06 10:20 
AnswerRe: Help with Set Up Pin
Christian Graus9-Aug-06 11:57
protectorChristian Graus9-Aug-06 11:57 
GeneralRe: Help with Set Up Pin
alexfromto10-Aug-06 3:01
alexfromto10-Aug-06 3:01 
QuestionProblems with ASP.NET 2.0 Pin
TheMajorRager9-Aug-06 8:57
TheMajorRager9-Aug-06 8:57 
AnswerRe: Problems with ASP.NET 2.0 Pin
Not Active9-Aug-06 9:11
mentorNot Active9-Aug-06 9:11 
AnswerRe: Problems with ASP.NET 2.0 Pin
Christian Graus9-Aug-06 11:58
protectorChristian Graus9-Aug-06 11:58 
QuestionSMTP Setting for sending emails Pin
Software_Guy_1239-Aug-06 7:28
Software_Guy_1239-Aug-06 7:28 
Hello,

I am using below code for sending emails, I am getting email in mailroot queue, my system is connected to internet, what settings need to be done so email can send to valid email Id.

Imports System.Web
Imports System.Web.Mail


Function sendMail(ByVal i_strFromId As String, ByVal i_strToId As String, ByVal i_strCCId As String, ByVal i_strSubject As String, ByVal i_strMsg As String)
Dim objMail As New MailMessage()

If Len(i_strFromId) > 0 Then objMail.From = i_strFromId

If Len(i_strToId) > 0 Then objMail.To = i_strToId
If Len(i_strCCId) > 0 Then objMail.Cc = i_strCCId

objMail.BodyFormat = MailFormat.Html
objMail.Subject = i_strSubject
objMail.Body = i_strMsg


SmtpMail.Send(objMail)

End Function

Best Regards,
S Kumar
AnswerRe: SMTP Setting for sending emails Pin
Not Active9-Aug-06 7:52
mentorNot Active9-Aug-06 7:52 
GeneralRe: SMTP Setting for sending emails Pin
Software_Guy_1239-Aug-06 8:05
Software_Guy_1239-Aug-06 8:05 
GeneralRe: SMTP Setting for sending emails Pin
Not Active9-Aug-06 8:47
mentorNot Active9-Aug-06 8:47 
GeneralRe: SMTP Setting for sending emails Pin
Software_Guy_12310-Aug-06 6:28
Software_Guy_12310-Aug-06 6:28 
AnswerRe: SMTP Setting for sending emails Pin
RaghuSanta21-Aug-06 22:25
RaghuSanta21-Aug-06 22:25 
QuestionPhoto's in Database Pin
Mad M0nk9-Aug-06 6:09
Mad M0nk9-Aug-06 6:09 
AnswerRe: Photo's in Database Pin
Brent Lamborn9-Aug-06 9:05
Brent Lamborn9-Aug-06 9:05 
QuestionASP.NET DataGrid Parameter [modified] Pin
Soot9-Aug-06 5:11
Soot9-Aug-06 5:11 
AnswerRe: ASP.NET DataGrid Parameter Pin
leckey9-Aug-06 7:52
leckey9-Aug-06 7:52 
GeneralRe: ASP.NET DataGrid Parameter [modified] Pin
Soot9-Aug-06 8:01
Soot9-Aug-06 8:01 
GeneralRe: ASP.NET DataGrid Parameter Pin
Not Active9-Aug-06 9:05
mentorNot Active9-Aug-06 9:05 
GeneralRe: ASP.NET DataGrid Parameter Pin
Soot9-Aug-06 9:37
Soot9-Aug-06 9:37 
GeneralRe: ASP.NET DataGrid Parameter Pin
Not Active9-Aug-06 10:13
mentorNot Active9-Aug-06 10:13 
GeneralRe: ASP.NET DataGrid Parameter Pin
Soot9-Aug-06 10:27
Soot9-Aug-06 10:27 
GeneralRe: ASP.NET DataGrid Parameter [modified] Pin
Soot9-Aug-06 10:30
Soot9-Aug-06 10:30 
GeneralRe: ASP.NET DataGrid Parameter Pin
Not Active9-Aug-06 13:02
mentorNot Active9-Aug-06 13:02 
GeneralRe: ASP.NET DataGrid Parameter Pin
Soot10-Aug-06 2:33
Soot10-Aug-06 2:33 

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.