Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to set password to my database.mdf in App_Data folder? Pin
god4k24-Nov-08 16:01
god4k24-Nov-08 16:01 
GeneralRe: How to set password to my database.mdf in App_Data folder? Pin
Christian Graus24-Nov-08 16:45
protectorChristian Graus24-Nov-08 16:45 
QuestionDisable a page similiar to the ModalPopupExtender (non javascript) Pin
playout24-Nov-08 6:10
playout24-Nov-08 6:10 
AnswerRe: Disable a page similiar to the ModalPopupExtender (non javascript) Pin
Christian Graus24-Nov-08 9:49
protectorChristian Graus24-Nov-08 9:49 
QuestionLoose Coupled Architecture Pin
altctrlnick24-Nov-08 5:40
altctrlnick24-Nov-08 5:40 
AnswerRe: Loose Coupled Architecture Pin
playout24-Nov-08 6:31
playout24-Nov-08 6:31 
AnswerRe: Loose Coupled Architecture Pin
Mycroft Holmes24-Nov-08 17:04
professionalMycroft Holmes24-Nov-08 17:04 
QuestionASP.NET send mail through gmail Pin
Amit Battan Ror24-Nov-08 5:31
Amit Battan Ror24-Nov-08 5:31 
I use the follwing code in ASP.NET 2008
its working well
but not working in 2005


String server = "smtp.gmail.com";
SmtpClient SmtpServer = new SmtpClient();
SmtpServer.Credentials = new System.Net.NetworkCredential(TextBox2.Text, TextBox3.Text);
SmtpServer.Port = 587;
SmtpServer.Host = server;
SmtpServer.EnableSsl = true;
MailMessage mail;
mail = new MailMessage();
mail.From = new MailAddress(TextBox2.Text, TextBox1.Text, System.Text.Encoding.UTF8);
mail.To.Add("skbataan@gmail.com");
mail.Subject = "FeedBack";
mail.Body = TextBox4.Text;
mail.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure;
SmtpServer.Send(mail);



Any Solution

Amit Battan Ror
battan20@gmail.com

QuestionRe: ASP.NET send mail through gmail Pin
led mike24-Nov-08 5:42
led mike24-Nov-08 5:42 
AnswerRe: ASP.NET send mail through gmail Pin
Paul Conrad24-Nov-08 5:50
professionalPaul Conrad24-Nov-08 5:50 
AnswerRe: ASP.NET send mail through gmail Pin
Christian Graus24-Nov-08 11:49
protectorChristian Graus24-Nov-08 11:49 
QuestionIs there any converter for Coverting ASP to ASP.net Pin
subrat4all24-Nov-08 1:21
subrat4all24-Nov-08 1:21 
AnswerRe: Is there any converter for Coverting ASP to ASP.net Pin
James Simpson24-Nov-08 1:36
James Simpson24-Nov-08 1:36 
AnswerRe: Is there any converter for Coverting ASP to ASP.net Pin
NeverHeardOfMe24-Nov-08 1:38
NeverHeardOfMe24-Nov-08 1:38 
GeneralRe: Is there any converter for Coverting ASP to ASP.net Pin
James Simpson24-Nov-08 1:43
James Simpson24-Nov-08 1:43 
JokeRe: Is there any converter for Coverting ASP to ASP.net Pin
Paul Conrad24-Nov-08 5:51
professionalPaul Conrad24-Nov-08 5:51 
QuestionRegarding To Image Display in a datalist Pin
div_gusain24-Nov-08 1:11
div_gusain24-Nov-08 1:11 
AnswerRe: Regarding To Image Display in a datalist Pin
Nishant Singh24-Nov-08 3:13
Nishant Singh24-Nov-08 3:13 
GeneralRe: Regarding To Image Display in a datalist Pin
div_gusain26-Nov-08 19:09
div_gusain26-Nov-08 19:09 
Questionhow to capture screen shot?? Pin
mr_muskurahat24-Nov-08 0:40
mr_muskurahat24-Nov-08 0:40 
AnswerRe: how to capture screen shot?? Pin
Nishant Singh24-Nov-08 0:44
Nishant Singh24-Nov-08 0:44 
GeneralRe: how to capture screen shot?? Pin
mr_muskurahat24-Nov-08 1:07
mr_muskurahat24-Nov-08 1:07 
AnswerRe: how to capture screen shot?? Pin
Nishant Singh24-Nov-08 2:44
Nishant Singh24-Nov-08 2:44 
AnswerRe: how to capture screen shot?? Pin
Venkat Eswaran24-Nov-08 7:53
Venkat Eswaran24-Nov-08 7:53 
Questionis it possible in asp.net? vb6 style drag drop database field to generate textboxes Pin
dream_liner_7e723-Nov-08 23:43
dream_liner_7e723-Nov-08 23:43 

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.