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

ASP.NET

 
GeneralRe: client-side POST from ASP Pin
Bino B21-Oct-07 20:25
Bino B21-Oct-07 20:25 
QuestionPAge crashes on entering ' and REPLACE Pin
SABhatti19-Oct-07 4:50
SABhatti19-Oct-07 4:50 
AnswerRe: PAge crashes on entering ' and REPLACE Pin
Guffa19-Oct-07 8:41
Guffa19-Oct-07 8:41 
AnswerRe: PAge crashes on entering ' and REPLACE Pin
Bino B21-Oct-07 20:28
Bino B21-Oct-07 20:28 
GeneralRe: PAge crashes on entering ' and REPLACE Pin
SABhatti22-Oct-07 13:03
SABhatti22-Oct-07 13:03 
Questionsending email using asp.net coding from gmail a/c to other Pin
yogesh_softworld12319-Oct-07 4:37
yogesh_softworld12319-Oct-07 4:37 
AnswerRe: sending email using asp.net coding from gmail a/c to other Pin
Saksida Bojan19-Oct-07 20:10
Saksida Bojan19-Oct-07 20:10 
AnswerRe: sending email using asp.net coding from gmail a/c to other Pin
Jintal Patel20-Oct-07 0:05
Jintal Patel20-Oct-07 0:05 
hi
add namespace -using System.Net.Mail;




MailMessage Msg = new MailMessage();
SmtpClient MailObj = new SmtpClient('Gmail host name[like mail.gmail.com]');
MailObj.Credentials = new System.Net.NetworkCredential(username, password);
MailObj.DeliveryMethod = SmtpDeliveryMethod.Network;
Msg.From = new MailAddress("yogeshdewangan97@gmail.com", "yoges");
Msg.To.Add(new MailAddress("yogesh_softeorld@yahoo.co.in");

Msg.IsBodyHtml = true;
Msg.Subject = " cxczx";
Msg.Body = "zxcxzczc";
MailObj.Send(Msg);

Jintal Patel

Questionproblem in edting in app config file Pin
Piyush Vardhan Singh19-Oct-07 3:35
Piyush Vardhan Singh19-Oct-07 3:35 
AnswerRe: problem in edting in app config file Pin
Saksida Bojan19-Oct-07 19:55
Saksida Bojan19-Oct-07 19:55 
Questioncannot connect to database Pin
solarthur0119-Oct-07 2:55
solarthur0119-Oct-07 2:55 
AnswerRe: cannot connect to database Pin
J4amieC19-Oct-07 3:27
J4amieC19-Oct-07 3:27 
GeneralRe: cannot connect to database Pin
solarthur0119-Oct-07 4:04
solarthur0119-Oct-07 4:04 
AnswerRe: cannot connect to database Pin
Paddy Boyd19-Oct-07 4:37
Paddy Boyd19-Oct-07 4:37 
GeneralRe: cannot connect to database Pin
solarthur0119-Oct-07 5:19
solarthur0119-Oct-07 5:19 
GeneralRe: cannot connect to database Pin
Paddy Boyd19-Oct-07 5:26
Paddy Boyd19-Oct-07 5:26 
GeneralRe: cannot connect to database Pin
solarthur0119-Oct-07 5:35
solarthur0119-Oct-07 5:35 
AnswerRe: cannot connect to database Pin
Bino B21-Oct-07 20:33
Bino B21-Oct-07 20:33 
QuestionContentPlaceHolder Masterpage Issue Pin
twinscythe1233219-Oct-07 2:26
twinscythe1233219-Oct-07 2:26 
AnswerRe: ContentPlaceHolder Masterpage Issue Pin
ToddHileHoffer19-Oct-07 2:37
ToddHileHoffer19-Oct-07 2:37 
GeneralRe: ContentPlaceHolder Masterpage Issue Pin
twinscythe1233219-Oct-07 3:02
twinscythe1233219-Oct-07 3:02 
QuestionHorrendous Bug in ASP.NET Session Handling Pin
Vasudevan Deepak Kumar19-Oct-07 2:07
Vasudevan Deepak Kumar19-Oct-07 2:07 
AnswerRe: Horrendous Bug in ASP.NET Session Handling Pin
ChrisKo19-Oct-07 7:15
ChrisKo19-Oct-07 7:15 
QuestionConvert System.Web.UI.WebControls.Image to System.Drawing.Image . Pin
akki.indian19-Oct-07 1:23
akki.indian19-Oct-07 1:23 
AnswerRe: Convert System.Web.UI.WebControls.Image to System.Drawing.Image . Pin
N a v a n e e t h19-Oct-07 1:38
N a v a n e e t h19-Oct-07 1:38 

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.