Click here to Skip to main content
15,881,173 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: System.Diagnostics.Process.start Pin
Dot Net rookie24-Jul-08 3:39
Dot Net rookie24-Jul-08 3:39 
QuestionIIS: How can I redirect form one application to another from the iis? Pin
Nada Adel24-Jul-08 1:15
Nada Adel24-Jul-08 1:15 
AnswerRe: IIS: How can I redirect form one application to another from the iis? Pin
shames(Sam)24-Jul-08 2:36
shames(Sam)24-Jul-08 2:36 
QuestionCrystal Report not Working Pin
Raghvendra Kumar Roy24-Jul-08 1:12
Raghvendra Kumar Roy24-Jul-08 1:12 
QuestionHow i send email in asp.net with c# ? Help Me. Pin
Ratnesh Bharos24-Jul-08 1:10
Ratnesh Bharos24-Jul-08 1:10 
AnswerRe: How i send email in asp.net with c# ? Help Me. Pin
Christian Graus24-Jul-08 1:21
protectorChristian Graus24-Jul-08 1:21 
GeneralRe: How i send email in asp.net with c# ? Help Me. Pin
N a v a n e e t h24-Jul-08 3:12
N a v a n e e t h24-Jul-08 3:12 
AnswerRe: How i send email in asp.net with c# ? Help Me. Pin
Sam Xavier24-Jul-08 22:35
Sam Xavier24-Jul-08 22:35 
Here is the small code snippet which I provided few back:

SmtpClient client1 = new SmtpClient("smtpserver", 25);
MailMessage msg = new MailMessage();
msg.To.Add(new MailAddress("toemailaddress"));
msg.From = new MailAddress("fromEmailAddress");
msg.Subject = "Test Message";
msg.Body = "Test Mail with Attachments";
Attachment item = new Attachment("D:\\test.txt");
Attachment item1 = new Attachment("D:\\test2.txt");
msg.Attachments.Add(item);
msg.Attachments.Add(item1);
client1.Send(msg);
Response.Write("Send");

Best Regards,
Sam Xavier
www.componentone.com

Questionhow i send email in asp.net with c# Pin
Ratnesh Bharos24-Jul-08 1:08
Ratnesh Bharos24-Jul-08 1:08 
AnswerRe: how i send email in asp.net with c# Pin
eyeseetee24-Jul-08 1:09
eyeseetee24-Jul-08 1:09 
QuestionForm Response - Email Error Pin
Member 367504724-Jul-08 0:56
Member 367504724-Jul-08 0:56 
AnswerRe: Form Response - Email Error Pin
Christian Graus24-Jul-08 1:03
protectorChristian Graus24-Jul-08 1:03 
AnswerRe: Form Response - Email Error Pin
eyeseetee24-Jul-08 1:10
eyeseetee24-Jul-08 1:10 
Questiondata grid problem Pin
Kissy1624-Jul-08 0:43
Kissy1624-Jul-08 0:43 
AnswerRe: data grid problem Pin
gurdeep_67724-Jul-08 0:54
gurdeep_67724-Jul-08 0:54 
GeneralRe: data grid problem Pin
Kissy1624-Jul-08 1:27
Kissy1624-Jul-08 1:27 
GeneralRe: data grid problem Pin
Christian Graus24-Jul-08 1:32
protectorChristian Graus24-Jul-08 1:32 
QuestionHow to do GridView Sorting using GridView1.Sort( ) method [modified] Pin
K V Sekhar24-Jul-08 0:30
K V Sekhar24-Jul-08 0:30 
Questiondatagrid Pin
csp24-Jul-08 0:20
csp24-Jul-08 0:20 
AnswerRe: datagrid Pin
Christian Graus24-Jul-08 0:23
protectorChristian Graus24-Jul-08 0:23 
Questiondisplaying tables in two different browsers Pin
eyeseetee24-Jul-08 0:11
eyeseetee24-Jul-08 0:11 
AnswerRe: displaying tables in two different browsers Pin
Christian Graus24-Jul-08 0:16
protectorChristian Graus24-Jul-08 0:16 
Questionhow to send mail with target date +.net with c# Pin
sugunavathysubramanian23-Jul-08 23:44
sugunavathysubramanian23-Jul-08 23:44 
AnswerRe: how to send mail with target date +.net with c# Pin
Christian Graus24-Jul-08 0:05
protectorChristian Graus24-Jul-08 0:05 
AnswerRe: how to send mail with target date +.net with c# Pin
Member 387988124-Jul-08 0:13
Member 387988124-Jul-08 0:13 

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.