Click here to Skip to main content
15,904,935 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP.NET Pin
Sandeep Akhare15-Oct-07 21:07
Sandeep Akhare15-Oct-07 21:07 
AnswerRe: ASP.NET Pin
joesolly15-Oct-07 19:58
joesolly15-Oct-07 19:58 
AnswerRe: ASP.NET Pin
Sathesh Sakthivel15-Oct-07 20:26
Sathesh Sakthivel15-Oct-07 20:26 
QuestionNewbie: How do I get Record Count from paged GridView with SqlDataSource data source? Pin
Brian C Hart15-Oct-07 12:20
professionalBrian C Hart15-Oct-07 12:20 
QuestionCrystal reports toolbar button not working Pin
Richard Jones15-Oct-07 8:40
Richard Jones15-Oct-07 8:40 
QuestionEmbedded forms Pin
ss.mmm15-Oct-07 7:52
ss.mmm15-Oct-07 7:52 
AnswerRe: Embedded forms Pin
Christian Graus15-Oct-07 10:24
protectorChristian Graus15-Oct-07 10:24 
Questionhelp with sending emails Pin
kaaj2115-Oct-07 7:39
kaaj2115-Oct-07 7:39 
can anybody plz help me find errors in this code. i am trying to send an email but i really cant. i cant figure out why..
Frown | :(
protected void btnSubmit_Click(object sender, EventArgs e)
{

MailMessage message = new MailMessage();
message.To = txtTo.Text;
message.From = txtFrom.Text;
message.Subject = txtSubject.Text;
message.Body = txtBody.Text;

try
{
SmtpMail.SmtpServer= "localhost";
SmtpMail.Send(message);
litStatus.Text = "Your email has been sent";

}
catch (Exception ex)
{
litStatus.Text="Error sending email";
}
}
}Frown | :(

kaaj
AnswerRe: help with sending emails Pin
Ennis Ray Lynch, Jr.15-Oct-07 9:21
Ennis Ray Lynch, Jr.15-Oct-07 9:21 
AnswerRe: help with sending emails Pin
brhnz15-Oct-07 9:51
brhnz15-Oct-07 9:51 
AnswerRe: help with sending emails Pin
cst_cfit16-Oct-07 19:11
cst_cfit16-Oct-07 19:11 
QuestionMultithreading Asp .Net apps Pin
Vodstok15-Oct-07 6:03
Vodstok15-Oct-07 6:03 
AnswerRe: Multithreading Asp .Net apps Pin
Ennis Ray Lynch, Jr.15-Oct-07 6:51
Ennis Ray Lynch, Jr.15-Oct-07 6:51 
GeneralRe: Multithreading Asp .Net apps Pin
Vodstok15-Oct-07 7:02
Vodstok15-Oct-07 7:02 
GeneralRe: Multithreading Asp .Net apps Pin
Ennis Ray Lynch, Jr.15-Oct-07 7:57
Ennis Ray Lynch, Jr.15-Oct-07 7:57 
GeneralRe: Multithreading Asp .Net apps Pin
Vodstok15-Oct-07 8:09
Vodstok15-Oct-07 8:09 
GeneralRe: Multithreading Asp .Net apps Pin
Ennis Ray Lynch, Jr.15-Oct-07 8:15
Ennis Ray Lynch, Jr.15-Oct-07 8:15 
GeneralRe: Multithreading Asp .Net apps Pin
Vodstok15-Oct-07 8:19
Vodstok15-Oct-07 8:19 
QuestionDynamically created controls Pin
orsela15-Oct-07 5:10
orsela15-Oct-07 5:10 
AnswerRe: Dynamically created controls Pin
Hesham Amin15-Oct-07 5:21
Hesham Amin15-Oct-07 5:21 
GeneralRe: Dynamically created controls Pin
orsela15-Oct-07 21:36
orsela15-Oct-07 21:36 
AnswerRe: Dynamically created controls Pin
Laxmikant Lad15-Oct-07 18:03
Laxmikant Lad15-Oct-07 18:03 
GeneralRe: Dynamically created controls Pin
orsela15-Oct-07 21:42
orsela15-Oct-07 21:42 
GeneralRe: Dynamically created controls Pin
Laxmikant Lad15-Oct-07 22:47
Laxmikant Lad15-Oct-07 22:47 
GeneralRe: Dynamically created controls Pin
orsela16-Oct-07 3:43
orsela16-Oct-07 3:43 

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.