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

ASP.NET

 
GeneralRe: [REPOST] .Net application Pin
sudevsu17-Dec-14 6:38
sudevsu17-Dec-14 6:38 
QuestionEmpty Business Object when Configure ObjectDataSource? Pin
raxhemanth16-Dec-14 23:32
raxhemanth16-Dec-14 23:32 
SuggestionRe: Empty Business Object when Configure ObjectDataSource? Pin
Richard Deeming17-Dec-14 2:24
mveRichard Deeming17-Dec-14 2:24 
QuestionTelerik RadComboBox Issuse for EnableLoadOnDemand and ItemRequesting ,when set_cancel(true) then Local Filtering not working Pin
Alpesh Tank15-Dec-14 23:31
Alpesh Tank15-Dec-14 23:31 
QuestionFRIENDS PLEASE POST ANY ASP.NET PROGRAM WITH REAL TIME STANDARDS AND APPROACHES IN THE COMPANIES Pin
Member 1128382315-Dec-14 3:30
Member 1128382315-Dec-14 3:30 
AnswerRe: FRIENDS PLEASE POST ANY ASP.NET PROGRAM WITH REAL TIME STANDARDS AND APPROACHES IN THE COMPANIES Pin
Richard MacCutchan15-Dec-14 4:39
mveRichard MacCutchan15-Dec-14 4:39 
AnswerRe: FRIENDS PLEASE POST ANY ASP.NET PROGRAM WITH REAL TIME STANDARDS AND APPROACHES IN THE COMPANIES Pin
ZurdoDev15-Dec-14 5:13
professionalZurdoDev15-Dec-14 5:13 
QuestionHow to send email using our own domain account Pin
Harishankar Maurya14-Dec-14 22:17
Harishankar Maurya14-Dec-14 22:17 
I want to send our domain account but being sent our code is




public void Email(string subject,string body, string to,string from)
{
try
{
MailMessage mail = new MailMessage();
mail.To.Add(to);
mail.From = new MailAddress("hsmaurya.net@gmail.com");
mail.Subject = subject;
mail.Body =body;
mail.IsBodyHtml = true;

//Attach file using FileUpload Control and put the file in memory stream

// mail.Attachments.Add(new Attachment(FileUpload1.PostedFile.InputStream, FileUpload1.FileName));

SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
//Or Your SMTP Server Address
smtp.Port = 25;
smtp.Credentials = new System.Net.NetworkCredential("hsmaurya.net@gmail.com", "9651199312222");
//Or your Smtp Email ID and Password
smtp.EnableSsl = true;
smtp.Send(mail);


Response.Write("<script>alert('Mail sent succecess.')</script>");
}
catch (Exception ex)
{
Response.Write("<script>alert('We are Facing trouble Pls Try Again')</script>");
}
}
QuestionRe: How to send email using our own domain account Pin
Richard MacCutchan14-Dec-14 22:23
mveRichard MacCutchan14-Dec-14 22:23 
SuggestionRe: How to send email using our own domain account Pin
Richard Deeming15-Dec-14 2:47
mveRichard Deeming15-Dec-14 2:47 
QuestionLambda evaluation Pin
Member 811808314-Dec-14 22:09
Member 811808314-Dec-14 22:09 
QuestionRe: Lambda evaluation Pin
Richard Deeming15-Dec-14 2:43
mveRichard Deeming15-Dec-14 2:43 
Questionimage does not come in printout Pin
Member 1126447913-Dec-14 23:30
Member 1126447913-Dec-14 23:30 
AnswerRe: image does not come in printout Pin
Anju_K23-Dec-14 1:18
Anju_K23-Dec-14 1:18 
Questionhow to Find the number of days between two dates in php Pin
aartimishra12-Dec-14 23:12
aartimishra12-Dec-14 23:12 
AnswerRe: demo question Pin
Richard MacCutchan12-Dec-14 23:58
mveRichard MacCutchan12-Dec-14 23:58 
AnswerRe: how to Find the number of days between two dates in php Pin
Richard MacCutchan14-Dec-14 22:15
mveRichard MacCutchan14-Dec-14 22:15 
QuestionRe: how to Find the number of days between two dates in php Pin
Richard Deeming15-Dec-14 2:42
mveRichard Deeming15-Dec-14 2:42 
Questiontask scheduler Pin
renukamubeen12-Dec-14 17:46
renukamubeen12-Dec-14 17:46 
AnswerRe: task scheduler Pin
Richard MacCutchan12-Dec-14 22:13
mveRichard MacCutchan12-Dec-14 22:13 
QuestionC# web application Pin
sudevsu12-Dec-14 9:29
sudevsu12-Dec-14 9:29 
QuestionRe: C# web application Pin
Maciej Los12-Dec-14 10:28
mveMaciej Los12-Dec-14 10:28 
AnswerRe: C# web application Pin
sudevsu15-Dec-14 4:09
sudevsu15-Dec-14 4:09 
QuestionMVC POST return view with model not refreshing the HTML Pin
CraigStinn12-Dec-14 5:36
CraigStinn12-Dec-14 5:36 
Questioni created a website in that website created a web page for sign in purpose after the user successfully logged in i shown a label that containing how many users logged in. I did this concept using session. Now i need to show who are all the users in t Pin
Karthikeyan_Annadurai12-Dec-14 4:03
Karthikeyan_Annadurai12-Dec-14 4:03 

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.