Click here to Skip to main content
15,926,396 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview hyprlink column should navigate to two pages Pin
Praneeth Babu K30-Mar-09 0:11
Praneeth Babu K30-Mar-09 0:11 
GeneralRe: Gridview hyprlink column should navigate to two pages Pin
anilpal30-Mar-09 0:20
anilpal30-Mar-09 0:20 
GeneralRe: Gridview hyprlink column should navigate to two pages Pin
Praneeth Babu K30-Mar-09 0:31
Praneeth Babu K30-Mar-09 0:31 
Questionpop3 mail Pin
aspnetloves29-Mar-09 23:03
aspnetloves29-Mar-09 23:03 
AnswerRe: pop3 mail Pin
Christian Graus29-Mar-09 23:07
protectorChristian Graus29-Mar-09 23:07 
GeneralRe: pop3 mail Pin
aspnetloves29-Mar-09 23:24
aspnetloves29-Mar-09 23:24 
GeneralRe: pop3 mail Pin
Christian Graus30-Mar-09 0:27
protectorChristian Graus30-Mar-09 0:27 
GeneralRe: pop3 mail Pin
bhattiprolu30-Mar-09 0:45
bhattiprolu30-Mar-09 0:45 
Hi Check the following code

SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
MailAddress fromAddress = new MailAddress(txtEmail.Text);
smtpClient.Host = "mail.xyz.com";
smtpClient.Port = 25;
message.From = fromAddress;
message.To.Add("abc@xyz.com");
message.Subject = "put some subject";
message.IsBodyHtml = false;
message.Body = "your body text";
smtpClient.Send(message);

put this code under your send button event.
QuestionPopulate records from pop-up to main window!!! Pin
Sr...Frank29-Mar-09 22:56
Sr...Frank29-Mar-09 22:56 
AnswerRe: Populate records from pop-up to main window!!! Pin
anilpal30-Mar-09 0:13
anilpal30-Mar-09 0:13 
GeneralRe: Populate records from pop-up to main window!!! Pin
Sr...Frank30-Mar-09 1:02
Sr...Frank30-Mar-09 1:02 
QuestionASP.net Web Forms Pin
nilam247729-Mar-09 22:26
nilam247729-Mar-09 22:26 
AnswerRe: ASP.net Web Forms Pin
Christian Graus29-Mar-09 22:30
protectorChristian Graus29-Mar-09 22:30 
Questiongetting next xml node value Pin
bhattiprolu29-Mar-09 21:48
bhattiprolu29-Mar-09 21:48 
AnswerRe: getting next xml node value Pin
SeMartens29-Mar-09 21:58
SeMartens29-Mar-09 21:58 
GeneralRe: getting next xml node value Pin
bhattiprolu29-Mar-09 23:08
bhattiprolu29-Mar-09 23:08 
GeneralRe: getting next xml node value Pin
SeMartens29-Mar-09 23:39
SeMartens29-Mar-09 23:39 
GeneralRe: getting next xml node value Pin
bhattiprolu30-Mar-09 0:03
bhattiprolu30-Mar-09 0:03 
GeneralRe: getting next xml node value Pin
SeMartens30-Mar-09 1:54
SeMartens30-Mar-09 1:54 
QuestionFrames or Master pages Pin
nilam247729-Mar-09 21:31
nilam247729-Mar-09 21:31 
AnswerRe: Frames or Master pages Pin
N a v a n e e t h29-Mar-09 22:05
N a v a n e e t h29-Mar-09 22:05 
AnswerRe: Frames or Master pages Pin
Christian Graus29-Mar-09 22:22
protectorChristian Graus29-Mar-09 22:22 
QuestionBinding GridView control with datasource Pin
nilam247729-Mar-09 21:27
nilam247729-Mar-09 21:27 
AnswerRe: Binding GridView control with datasource Pin
N a v a n e e t h29-Mar-09 22:13
N a v a n e e t h29-Mar-09 22:13 
QuestionAjax problem? Pin
Karthick_gc29-Mar-09 21:25
Karthick_gc29-Mar-09 21:25 

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.