Click here to Skip to main content
15,891,136 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: SQL Membership PRovider Pin
Are Jay26-May-09 17:38
Are Jay26-May-09 17:38 
QuestionComoboBox selection not changing Pin
Gymnast26-May-09 9:43
Gymnast26-May-09 9:43 
AnswerRe: ComoboBox selection not changing Pin
Manas Bhardwaj26-May-09 10:28
professionalManas Bhardwaj26-May-09 10:28 
QuestionJavascript for Gridview Commandfield Pin
dptalt26-May-09 9:29
dptalt26-May-09 9:29 
AnswerRe: Javascript for Gridview Commandfield Pin
Tuwing.Sabado26-May-09 15:09
Tuwing.Sabado26-May-09 15:09 
AnswerRe: Javascript for Gridview Commandfield Pin
Sathisha N.M24-Feb-10 1:10
Sathisha N.M24-Feb-10 1:10 
QuestionThe transport failed to connect to the server. Pin
LucBite26-May-09 7:33
LucBite26-May-09 7:33 
AnswerRe: The transport failed to connect to the server. Pin
alexito196526-May-09 7:45
alexito196526-May-09 7:45 
check the credentials and mail server.
you use smtp service?

some like this:
public static void sendMail(string _to, string _subject, string _body)
{
MailMessage correo = new MailMessage();
correo.From = new MailAddress(_emailFrom);
correo.To.Add(_to);
correo.Subject = _subject;
correo.Body = _body;
correo.IsBodyHtml = false;
correo.Priority = MailPriority.Normal;

SmtpClient smtp = new SmtpClient();
smtp.Host = _server;

smtp.Credentials = new NetworkCredential(_user, _pwd);

try
{
smtp.Send(correo);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "TestOfApplication",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}

regards
AnswerRe: The transport failed to connect to the server. Pin
Manas Bhardwaj26-May-09 10:32
professionalManas Bhardwaj26-May-09 10:32 
QuestionHi - Why does the javascript in this asp.net tutorial not work in firefox 3? Pin
hardboy11126-May-09 7:11
hardboy11126-May-09 7:11 
AnswerRe: Hi - Why does the javascript in this asp.net tutorial not work in firefox 3? Pin
sarang_k26-May-09 16:42
sarang_k26-May-09 16:42 
Questiondesigner generated hidden code Pin
bolly-8126-May-09 6:54
bolly-8126-May-09 6:54 
AnswerRe: designer generated hidden code Pin
Manas Bhardwaj26-May-09 10:34
professionalManas Bhardwaj26-May-09 10:34 
Questiongridview binding Pin
jainiraj26-May-09 6:51
jainiraj26-May-09 6:51 
AnswerRe: gridview binding Pin
Tuwing.Sabado26-May-09 15:37
Tuwing.Sabado26-May-09 15:37 
GeneralRe: gridview binding Pin
jainiraj26-May-09 18:07
jainiraj26-May-09 18:07 
QuestionCompositeControl with dynamic controls Pin
cgreathouse26-May-09 5:40
cgreathouse26-May-09 5:40 
QuestionHow to concate various controls data into a TextBox Pin
Pawan Kiran26-May-09 5:27
Pawan Kiran26-May-09 5:27 
AnswerRe: How to concate various controls data into a TextBox Pin
Manas Bhardwaj26-May-09 10:39
professionalManas Bhardwaj26-May-09 10:39 
GeneralRe: How to concate various controls data into a TextBox Pin
Pawan Kiran27-May-09 0:28
Pawan Kiran27-May-09 0:28 
AnswerRe: How to concate various controls data into a TextBox Pin
Tuwing.Sabado26-May-09 15:47
Tuwing.Sabado26-May-09 15:47 
QuestionWeb Crystal Report from NT Current Event Log Pin
Yakimo26-May-09 4:31
Yakimo26-May-09 4:31 
Questionhow to use the share assembly in the .net Pin
lakshmichawala26-May-09 3:08
lakshmichawala26-May-09 3:08 
AnswerRe: how to use the share assembly in the .net Pin
Manas Bhardwaj26-May-09 3:41
professionalManas Bhardwaj26-May-09 3:41 
QuestionNot a valid virtual path Pin
samerh26-May-09 3:03
samerh26-May-09 3:03 

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.