Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
QuestionWPF media element play and pause Pin
Tichaona J6-Aug-10 4:03
Tichaona J6-Aug-10 4:03 
QuestionConnect and synch with an androide based device through USB Pin
annathor6-Aug-10 3:32
annathor6-Aug-10 3:32 
QuestionWebbrowser Control and item selection (IE developer tools like) - need help Pin
Marcelo Magri6-Aug-10 3:17
Marcelo Magri6-Aug-10 3:17 
AnswerRe: Webbrowser Control and item selection (IE developer tools like) - need help Pin
Ravi Bhavnani7-Aug-10 9:41
professionalRavi Bhavnani7-Aug-10 9:41 
GeneralRe: Webbrowser Control and item selection (IE developer tools like) - need help Pin
Marcelo Magri9-Aug-10 9:09
Marcelo Magri9-Aug-10 9:09 
Questionshowdialog box Pin
Tichaona J6-Aug-10 3:14
Tichaona J6-Aug-10 3:14 
AnswerRe: showdialog box Pin
kapax56-Aug-10 3:41
kapax56-Aug-10 3:41 
QuestionSending email in Asp.net Pin
arsendem6-Aug-10 2:32
arsendem6-Aug-10 2:32 
file web.config makes the following settings for sending:

system.net
mailSettings
smtp
network
host="smtp.mail.ru"
port="25"
userName="username"
password="password"
smtp
mailSettings
system.net

Button "Send"

protected void send_Click(object sender, EventArgs e)
{
try
{
const string ToAddress = "mymail@mail.ru";
MailMessage mm = new MailMessage(UsersEmail.Text, ToAddress);
mm.Subject = Subject.Text;
mm.Body = Body.Text;
mm.IsBodyHtml = false;
SmtpClient smtpClient = new SmtpClient();
smtpClient.Send(mm);
}
catch (Exception exc)
{
L_message.Text = exc.Message.ToString();
}
}

Can not send email.
I use the internet via a proxy server.
Could the reason why this is not the mail is sent?
What can advise me in this situation?.
I tried different ways but not sent.
The exception, "Failed to send e-mail."
AnswerRe: Sending email in Asp.net Pin
Not Active6-Aug-10 2:36
mentorNot Active6-Aug-10 2:36 
GeneralRe: Sending email in Asp.net Pin
arsendem6-Aug-10 2:40
arsendem6-Aug-10 2:40 
AnswerRe: Sending email in Asp.net [modified] Pin
Vimalsoft(Pty) Ltd6-Aug-10 22:54
professionalVimalsoft(Pty) Ltd6-Aug-10 22:54 
GeneralRe: Sending email in Asp.net Pin
arsendem8-Aug-10 20:07
arsendem8-Aug-10 20:07 
QuestionlistBox Pin
Tichaona J6-Aug-10 2:04
Tichaona J6-Aug-10 2:04 
AnswerRe: listBox Pin
V.6-Aug-10 2:18
professionalV.6-Aug-10 2:18 
AnswerRe: listBox Pin
Prosanta Kundu online6-Aug-10 2:18
Prosanta Kundu online6-Aug-10 2:18 
QuestionCheckbox Pin
kolisa6-Aug-10 1:51
kolisa6-Aug-10 1:51 
AnswerRe: Checkbox Pin
riced6-Aug-10 21:44
riced6-Aug-10 21:44 
Questiondatagrid Pin
kolisa6-Aug-10 1:48
kolisa6-Aug-10 1:48 
QuestionClick Once Publishing Pin
lourensG6-Aug-10 1:27
lourensG6-Aug-10 1:27 
AnswerRe: Click Once Publishing Pin
Łukasz Nowakowski6-Aug-10 1:55
Łukasz Nowakowski6-Aug-10 1:55 
GeneralRe: Click Once Publishing Pin
lourensG6-Aug-10 2:06
lourensG6-Aug-10 2:06 
GeneralRe: Click Once Publishing Pin
Łukasz Nowakowski6-Aug-10 2:07
Łukasz Nowakowski6-Aug-10 2:07 
GeneralRe: Click Once Publishing Pin
lourensG6-Aug-10 2:15
lourensG6-Aug-10 2:15 
GeneralRe: Click Once Publishing Pin
Łukasz Nowakowski6-Aug-10 2:19
Łukasz Nowakowski6-Aug-10 2:19 
GeneralRe: Click Once Publishing Pin
lourensG6-Aug-10 3:09
lourensG6-Aug-10 3:09 

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.