Click here to Skip to main content
15,888,461 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Freeze Header in Gridview Pin
meeram39518-Jun-08 2:14
meeram39518-Jun-08 2:14 
GeneralRe: Freeze Header in Gridview Pin
SathyaSiva18-Jun-08 2:31
SathyaSiva18-Jun-08 2:31 
QuestionI am not getting id value Pin
r aa j18-Jun-08 0:10
r aa j18-Jun-08 0:10 
Questiondownloading error while using ajax Pin
Pankaj Garg17-Jun-08 23:45
Pankaj Garg17-Jun-08 23:45 
AnswerRe: downloading error while using ajax Pin
Imran Khan Pathan18-Jun-08 1:21
Imran Khan Pathan18-Jun-08 1:21 
GeneralRe: downloading error while using ajax Pin
Pankaj Garg18-Jun-08 1:40
Pankaj Garg18-Jun-08 1:40 
QuestionPasswordRecovery Control Pin
jason_mf17-Jun-08 23:37
jason_mf17-Jun-08 23:37 
AnswerRe: PasswordRecovery Control Pin
Sam Xavier18-Jun-08 9:11
Sam Xavier18-Jun-08 9:11 
You may use either web.config or asp.net configuration to specify the SMTP Server..
You need to remember that Hotmail and Gmail requires proper authentication so you need to provide an username and password as well.

Thereafter, you need to code the mail which you will be sending. Here is a small code snippet which does this:

SmtpClient smtpClient1 = new SmtpClient("ServerName", "smtpPort");
MailAddress fromEmailAddress = new MailAddress("fromEmailAddress");
MailAddress toEmailAddress = new MailAddress("toEmailAddress");
MailMessage msg = new MailMessage(fromEmailAddress, toEmailAddress);

msg.Subject = "Password sent";
smtpClient1.Send(msg);

Best Regards,
Sam Xavier
www.componentone.com

Questionconnection to database using asp.net with vb Pin
harish.k1217-Jun-08 23:37
harish.k1217-Jun-08 23:37 
AnswerRe: connection to database using asp.net with vb Pin
Masood Kochi,SSF17-Jun-08 23:42
Masood Kochi,SSF17-Jun-08 23:42 
AnswerRe: connection to database using asp.net with vb Pin
Imran Khan Pathan18-Jun-08 1:13
Imran Khan Pathan18-Jun-08 1:13 
QuestionAJAX Modal Popup Extender Pin
immu517-Jun-08 23:36
immu517-Jun-08 23:36 
AnswerRe: AJAX Modal Popup Extender Pin
Imran Khan Pathan18-Jun-08 1:09
Imran Khan Pathan18-Jun-08 1:09 
QuestionMOSS / Reporting Services integrated - object model [modified] Pin
6o'clock17-Jun-08 23:25
6o'clock17-Jun-08 23:25 
QuestionWindow Positioning in webpage? Pin
Masood Kochi,SSF17-Jun-08 23:11
Masood Kochi,SSF17-Jun-08 23:11 
AnswerRe: Window Positioning in webpage? Pin
Sam Xavier18-Jun-08 9:13
Sam Xavier18-Jun-08 9:13 
Questionreading a file Pin
Ebube17-Jun-08 23:10
Ebube17-Jun-08 23:10 
AnswerRe: reading a file Pin
J a a n s18-Jun-08 1:27
professionalJ a a n s18-Jun-08 1:27 
QuestionhOW TO WRITE IN EXCEL Pin
Raghvendra Kumar Roy17-Jun-08 23:10
Raghvendra Kumar Roy17-Jun-08 23:10 
QuestionProblem with Word component for spell checking Pin
Vsree17-Jun-08 23:03
Vsree17-Jun-08 23:03 
QuestionCheck change in page values during post Pin
imsathy17-Jun-08 21:28
imsathy17-Jun-08 21:28 
AnswerRe: Check change in page values during post Pin
Blue_Boy17-Jun-08 21:43
Blue_Boy17-Jun-08 21:43 
QuestionText to number conversion in crystal report Pin
member2717-Jun-08 21:25
member2717-Jun-08 21:25 
QuestionHelp. Has somebody used the software from microsoft .named :XML_Notepad_2007 Pin
ice-hotty17-Jun-08 21:13
ice-hotty17-Jun-08 21:13 
AnswerRe: Help. Has somebody used the software from microsoft .named :XML_Notepad_2007 Pin
N a v a n e e t h17-Jun-08 22:07
N a v a n e e t h17-Jun-08 22:07 

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.