Click here to Skip to main content
15,881,139 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Providing link to the images that are shown in Slideshowextender control Pin
sashidhar28-Sep-09 21:04
sashidhar28-Sep-09 21:04 
GeneralRe: Providing link to the images that are shown in Slideshowextender control Pin
jknascrimz28-Sep-09 21:14
jknascrimz28-Sep-09 21:14 
QuestionSending Mail Pin
benams28-Sep-09 20:13
benams28-Sep-09 20:13 
AnswerRe: Sending Mail Pin
Christian Graus28-Sep-09 20:25
protectorChristian Graus28-Sep-09 20:25 
GeneralRe: Sending Mail Pin
benams28-Sep-09 20:28
benams28-Sep-09 20:28 
GeneralRe: Sending Mail Pin
Christian Graus28-Sep-09 20:31
protectorChristian Graus28-Sep-09 20:31 
AnswerRe: Sending Mail Pin
Abhijit Jana28-Sep-09 20:27
professionalAbhijit Jana28-Sep-09 20:27 
Questionmail sending code in asp.net...plz guide me... Pin
madhura apte28-Sep-09 20:12
madhura apte28-Sep-09 20:12 
Hello,

      i've written code for sending mail in asp.net 2.0. I'm not getting any errror message,rather i'm receiving msg of "Message sent successfully". BUT STILL I'M NOT RECEIVING ANY EMAIL IN MY MAILBOX.I've written following code.

in .aspx page,

Imports System.Net.Mail

Protected Sub btn_Send_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn_Send.Click
            Dim message As MailMessage
            message = New MailMessage(txt_From.Text, txt_To.Text, txt_Subject.Text, txt_Message.Text)
            Dim client As SmtpClient = New SmtpClient("192.168.1.2")
            client.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis
            client.Send(message)
            lbl_msg.ForeColor = Drawing.Color.Red
            lbl_msg.Text = "Message sent successfully !"
      End Sub

and in the web.config, i ve written the following tab.

<system.net>
          <mailSettings>
               <smtp from="mail.eqlsoft.com">
                    <network host="mail.eqlsoft.com" port="25" defaultCredentials="true"/>
               </smtp>
          </mailSettings>
     </system.net>

in addition to this i've configured my SMTP Server,as per guidelines in one of the forums on codeproject.
BUT i'm not very sure about the Smart Host name.

can you please help me... its urgent !!!
AnswerRe: mail sending code in asp.net...plz guide me... Pin
Christian Graus28-Sep-09 20:24
protectorChristian Graus28-Sep-09 20:24 
QuestionHow to retain the original value of dropdow? Pin
amittinku28-Sep-09 20:08
amittinku28-Sep-09 20:08 
AnswerRe: How to retain the original value of dropdow? Pin
Christian Graus28-Sep-09 20:19
protectorChristian Graus28-Sep-09 20:19 
GeneralRe: How to retain the original value of dropdow? Pin
amittinku28-Sep-09 22:01
amittinku28-Sep-09 22:01 
Questionascx page in asp.net web application Pin
kunal naik28-Sep-09 19:24
kunal naik28-Sep-09 19:24 
AnswerRe: ascx page in asp.net web application Pin
Christian Graus28-Sep-09 19:42
protectorChristian Graus28-Sep-09 19:42 
AnswerRe: ascx page in asp.net web application Pin
sashidhar28-Sep-09 19:59
sashidhar28-Sep-09 19:59 
AnswerRe: ascx page in asp.net web application Pin
sashidhar28-Sep-09 20:00
sashidhar28-Sep-09 20:00 
QuestionDropdownlist in Webpart Pin
Anil Kumar28-Sep-09 18:59
Anil Kumar28-Sep-09 18:59 
AnswerRe: Dropdownlist in Webpart Pin
Abhijit Jana28-Sep-09 19:05
professionalAbhijit Jana28-Sep-09 19:05 
GeneralRe: Dropdownlist in Webpart Pin
Anil Kumar28-Sep-09 19:14
Anil Kumar28-Sep-09 19:14 
GeneralRe: Dropdownlist in Webpart Pin
Abhijit Jana28-Sep-09 19:22
professionalAbhijit Jana28-Sep-09 19:22 
GeneralRe: Dropdownlist in Webpart Pin
Anil Kumar28-Sep-09 19:52
Anil Kumar28-Sep-09 19:52 
QuestionDropdownlist Pin
satyaaa28-Sep-09 18:48
satyaaa28-Sep-09 18:48 
AnswerRe: Dropdownlist Pin
Abhijit Jana28-Sep-09 19:01
professionalAbhijit Jana28-Sep-09 19:01 
AnswerRe: Dropdownlist Pin
sashidhar28-Sep-09 19:01
sashidhar28-Sep-09 19:01 
Questiontransparent background image Pin
benams28-Sep-09 18:06
benams28-Sep-09 18:06 

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.