Click here to Skip to main content
15,924,038 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow i can hold more than one reutrn value from show modal dialog page Pin
jagadeeshkumar198419-Oct-07 1:10
jagadeeshkumar198419-Oct-07 1:10 
AnswerRe: how i can hold more than one reutrn value from show modal dialog page Pin
Aavesh Agarwal19-Oct-07 1:27
Aavesh Agarwal19-Oct-07 1:27 
GeneralRe: how i can hold more than one reutrn value from show modal dialog page Pin
jagadeeshkumar198419-Oct-07 1:57
jagadeeshkumar198419-Oct-07 1:57 
AnswerRe: how i can hold more than one reutrn value from show modal dialog page Pin
SABhatti19-Oct-07 5:01
SABhatti19-Oct-07 5:01 
GeneralRe: how i can hold more than one reutrn value from show modal dialog page Pin
jagadeeshkumar198419-Oct-07 18:19
jagadeeshkumar198419-Oct-07 18:19 
QuestionWebParts - Declarative CatalogPart Pin
ShruthiLavan19-Oct-07 0:33
ShruthiLavan19-Oct-07 0:33 
QuestionUsing table how to do the following codes?,... Pin
Member 387988118-Oct-07 23:47
Member 387988118-Oct-07 23:47 
QuestionSending Email using asp.net with c#, problem. Pin
yogesh_softworld12318-Oct-07 23:39
yogesh_softworld12318-Oct-07 23:39 
protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{

MailMessage message = new MailMessage(txtFrom.Text, txtTo.Text, txtSubject.Text, txtBody.Text);
SmtpClient emailClient = new SmtpClient(txtSMTPServer.Text);
System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential(txtSMTPUser.Text, txtSMTPPass.Text);
emailClient.UseDefaultCredentials = false;
emailClient.Credentials = SMTPUserInfo;
emailClient.Send(message);
litStatus.Text = "Message Sent";

}
catch (Exception ex)
{
litStatus.Text=ex.ToString();
}
}


i have used this code for sending email to other..
there is a window page and there are many textboxes for them,
for this code i can use my yahoo a/c "from" field. and what i can use in fields SMTPserver,SMTPuser and SMTPpass.
plz helpp me sir
Sleepy | :zzz:


yogesh

AnswerRe: Sending Email using asp.net with c#, problem. Pin
N a v a n e e t h19-Oct-07 1:34
N a v a n e e t h19-Oct-07 1:34 
QuestionDatabase records add in array list Pin
Member 387988118-Oct-07 23:11
Member 387988118-Oct-07 23:11 
AnswerRe: Database records add in array list Pin
Imran Khan Pathan18-Oct-07 23:35
Imran Khan Pathan18-Oct-07 23:35 
QuestionGridview Sorting Pin
Brendan Vogt18-Oct-07 22:57
Brendan Vogt18-Oct-07 22:57 
AnswerRe: Gridview Sorting Pin
M LN Rao18-Oct-07 23:05
M LN Rao18-Oct-07 23:05 
QuestionRe: Gridview Sorting Pin
Brendan Vogt19-Oct-07 0:41
Brendan Vogt19-Oct-07 0:41 
AnswerRe: Gridview Sorting Pin
Bjohnson3319-Oct-07 4:19
Bjohnson3319-Oct-07 4:19 
AnswerRe: Gridview Sorting Pin
Bjohnson3318-Oct-07 23:09
Bjohnson3318-Oct-07 23:09 
GeneralRe: Gridview Sorting Pin
Brendan Vogt19-Oct-07 0:42
Brendan Vogt19-Oct-07 0:42 
QuestionProblem with Accessibility property in firefox. Pin
M LN Rao18-Oct-07 22:42
M LN Rao18-Oct-07 22:42 
QuestionPick The Text Through QueryString in C#.Net Pin
Rinki Mukheraji18-Oct-07 22:31
Rinki Mukheraji18-Oct-07 22:31 
AnswerRe: Pick The Text Through QueryString in C#.Net Pin
Piyush Vardhan Singh18-Oct-07 22:53
Piyush Vardhan Singh18-Oct-07 22:53 
GeneralRe: Pick The Text Through QueryString in C#.Net Pin
Rinki Mukheraji18-Oct-07 23:07
Rinki Mukheraji18-Oct-07 23:07 
GeneralRe: Pick The Text Through QueryString in C#.Net Pin
Piyush Vardhan Singh18-Oct-07 23:17
Piyush Vardhan Singh18-Oct-07 23:17 
Questionrun a code when form is closing Pin
8213001218-Oct-07 22:15
8213001218-Oct-07 22:15 
AnswerRe: run a code when form is closing Pin
Guffa18-Oct-07 22:38
Guffa18-Oct-07 22:38 
GeneralRe: run a code when form is closing Pin
Sonia Gupta18-Oct-07 23:17
Sonia Gupta18-Oct-07 23:17 

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.