Click here to Skip to main content
15,929,429 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Question__doPostBack('','') Microsoft JScript runtime error:: Object expected Pin
Suni Ashok30-Mar-09 0:43
Suni Ashok30-Mar-09 0:43 
AnswerRe: __doPostBack('','') Microsoft JScript runtime error:: Object expected Pin
anilpal30-Mar-09 0:51
anilpal30-Mar-09 0:51 
GeneralRe: __doPostBack('','') Microsoft JScript runtime error:: Object expected Pin
Suni Ashok30-Mar-09 1:14
Suni Ashok30-Mar-09 1:14 
GeneralRe: __doPostBack('','') Microsoft JScript runtime error:: Object expected Pin
anilpal30-Mar-09 20:29
anilpal30-Mar-09 20:29 
QuestionPlease help me on Production Issue Pin
Member 311097030-Mar-09 0:24
Member 311097030-Mar-09 0:24 
AnswerRe: Please help me on Production Issue Pin
Christian Graus30-Mar-09 0:26
protectorChristian Graus30-Mar-09 0:26 
AnswerRe: Please help me on Production Issue Pin
anilpal30-Mar-09 0:30
anilpal30-Mar-09 0:30 
GeneralRe: Please help me on Production Issue Pin
Member 311097030-Mar-09 1:02
Member 311097030-Mar-09 1:02 
GeneralRe: Please help me on Production Issue Pin
anilpal30-Mar-09 1:06
anilpal30-Mar-09 1:06 
GeneralRe: Please help me on Production Issue Pin
Member 311097030-Mar-09 1:22
Member 311097030-Mar-09 1:22 
QuestionCrisis with a dynamically created drop down list Pin
scar_face30-Mar-09 0:05
scar_face30-Mar-09 0:05 
AnswerRe: Crisis with a dynamically created drop down list Pin
anilpal30-Mar-09 0:16
anilpal30-Mar-09 0:16 
QuestionGridview hyprlink column should navigate to two pages Pin
Praneeth Babu K29-Mar-09 23:22
Praneeth Babu K29-Mar-09 23:22 
AnswerRe: Gridview hyprlink column should navigate to two pages Pin
anilpal30-Mar-09 0:03
anilpal30-Mar-09 0:03 
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 

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.