Click here to Skip to main content
15,896,497 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSending Email in ASP.NET Pin
.NET- India 25-Sep-07 18:49
.NET- India 25-Sep-07 18:49 
AnswerRe: Sending Email in ASP.NET [modified] Pin
VenkataRamana.Gali25-Sep-07 19:03
VenkataRamana.Gali25-Sep-07 19:03 
GeneralRe: Sending Email in ASP.NET Pin
.NET- India 25-Sep-07 19:10
.NET- India 25-Sep-07 19:10 
GeneralRe: Sending Email in ASP.NET Pin
VenkataRamana.Gali25-Sep-07 19:15
VenkataRamana.Gali25-Sep-07 19:15 
GeneralRe: Sending Email in ASP.NET Pin
.NET- India 25-Sep-07 22:35
.NET- India 25-Sep-07 22:35 
AnswerRe: Sending Email in ASP.NET Pin
monu nair25-Sep-07 19:03
monu nair25-Sep-07 19:03 
AnswerRe: Sending Email in ASP.NET Pin
monu nair25-Sep-07 19:06
monu nair25-Sep-07 19:06 
AnswerRe: Sending Email in ASP.NET Pin
Jintal Patel26-Sep-07 3:16
Jintal Patel26-Sep-07 3:16 
hi...

MailMessage Msg = new MailMessage();
string host = mail@priveejets.com;
string username = xyz@priveejets.com;
string password = (your Password for This Mail Id);
SmtpClient MailObj = new SmtpClient(host);

MailObj.Credentials = new System.Net.NetworkCredential(username, password);
MailObj.DeliveryMethod = SmtpDeliveryMethod.Network;

Msg.To=txtEmail.Text;
Msg.From="mail@priveejets.com";
Msg.IsBodyHtml = true;
Msg.Subject = txtSubject.Text;
Msg.Body = txtMessage.Value;

MailObj.Send(Msg);


Jintal Patel

GeneralRe: Sending Email in ASP.NET Pin
.NET- India 26-Sep-07 20:50
.NET- India 26-Sep-07 20:50 
GeneralRe: Sending Email in ASP.NET Pin
Jintal Patel28-Sep-07 0:01
Jintal Patel28-Sep-07 0:01 
Questionhow to get just one record in gridview [modified] Pin
newbieAl25-Sep-07 15:55
newbieAl25-Sep-07 15:55 
AnswerRe: how to get just one record in gridview Pin
Christian Graus25-Sep-07 16:33
protectorChristian Graus25-Sep-07 16:33 
GeneralRe: how to get just one record in gridview Pin
newbieAl26-Sep-07 2:21
newbieAl26-Sep-07 2:21 
AnswerRe: how to get just one record in gridview Pin
M_Menon26-Sep-07 7:35
M_Menon26-Sep-07 7:35 
GeneralRe: how to get just one record in gridview Pin
newbieAl26-Sep-07 9:06
newbieAl26-Sep-07 9:06 
Questionvirtual Reality Pin
ahemoudi25-Sep-07 12:44
ahemoudi25-Sep-07 12:44 
AnswerRe: virtual Reality Pin
Christian Graus25-Sep-07 13:26
protectorChristian Graus25-Sep-07 13:26 
GeneralRe: virtual Reality Pin
ahemoudi25-Sep-07 23:55
ahemoudi25-Sep-07 23:55 
QuestionLogin Default Button Pin
Jpuckett25-Sep-07 10:37
Jpuckett25-Sep-07 10:37 
AnswerRe: Login Default Button Pin
Jpuckett25-Sep-07 17:48
Jpuckett25-Sep-07 17:48 
AnswerRe: Login Default Button Pin
Venkatesh Mookkan25-Sep-07 20:29
Venkatesh Mookkan25-Sep-07 20:29 
QuestionOutside accsess Pin
Saksida Bojan25-Sep-07 10:32
Saksida Bojan25-Sep-07 10:32 
AnswerRe: Outside accsess Pin
Guffa25-Sep-07 10:53
Guffa25-Sep-07 10:53 
GeneralRe: Outside accsess Pin
Saksida Bojan25-Sep-07 11:10
Saksida Bojan25-Sep-07 11:10 
AnswerRe: Outside accsess Pin
Guffa25-Sep-07 11:19
Guffa25-Sep-07 11:19 

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.