Click here to Skip to main content
15,922,155 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 21:27
Imran Khan Pathan25-Sep-07 21:27 
GeneralRe: Gridview with Hovermenu Pin
Malayil alex25-Sep-07 21:31
Malayil alex25-Sep-07 21:31 
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 22:07
Imran Khan Pathan25-Sep-07 22:07 
GeneralRe: Gridview with Hovermenu Pin
Malayil alex25-Sep-07 22:30
Malayil alex25-Sep-07 22:30 
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 23:09
Imran Khan Pathan25-Sep-07 23:09 
Questiondiference between 2 local datetime instances(client)in minutes using javascript Pin
Md Arif25-Sep-07 18:52
Md Arif25-Sep-07 18:52 
AnswerRe: diference between 2 local datetime instances(client)in minutes using javascript Pin
VenkataRamana.Gali25-Sep-07 19:10
VenkataRamana.Gali25-Sep-07 19:10 
AnswerRe: diference between 2 local datetime instances(client)in minutes using javascript Pin
monu nair25-Sep-07 19:38
monu nair25-Sep-07 19:38 
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 

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.