Click here to Skip to main content
15,907,001 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionImage Editor for Asp.Net 2.0 Pin
Mustakim Mansuri3-Sep-07 2:44
Mustakim Mansuri3-Sep-07 2:44 
AnswerRe: Image Editor for Asp.Net 2.0 Pin
-- Abhi --3-Sep-07 2:52
-- Abhi --3-Sep-07 2:52 
GeneralRe: Image Editor for Asp.Net 2.0 Pin
Mustakim Mansuri3-Sep-07 2:56
Mustakim Mansuri3-Sep-07 2:56 
AnswerRe: Image Editor for Asp.Net 2.0 Pin
-- Abhi --3-Sep-07 3:01
-- Abhi --3-Sep-07 3:01 
GeneralRe: Image Editor for Asp.Net 2.0 Pin
Mustakim Mansuri3-Sep-07 3:02
Mustakim Mansuri3-Sep-07 3:02 
QuestionEmail with embedded image Pin
.NET- India 3-Sep-07 2:20
.NET- India 3-Sep-07 2:20 
AnswerRe: Email with embedded image Pin
varshavmane3-Sep-07 2:23
varshavmane3-Sep-07 2:23 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 2:27
.NET- India 3-Sep-07 2:27 
Here is the code plz have a look and that is uploaded on the server......

MailMessage mail1=new MailMessage();

mail1.To="manoj.msb1984@gmail.com,";
//mail1.To="mail@saamstesting.com";
mail1.From="mail@saamstesting.com";
//mail1.From="manoj.msb1984@gmail.com";
mail1.Subject="Welcome To Chinu Videos World!";
mail1.Priority=MailPriority.High;
//mail1.Body="Manoj Singh Bisht Do You Know Me";
mail1.BodyFormat=MailFormat.Html;

string body="Manoj Bisht
";
mail1.Body=body.ToString();


try
{
SmtpMail.SmtpServer="mail.saamstesting.com";
//SmtpMail.SmtpServer="127.0.0.1";
SmtpMail.Send(mail1);
lblMsg.Text="Mail Sent Successfully";
lblMsg.ForeColor=Color.DarkBlue;

}
catch(Exception ex)
{
lblMsg.Text=ex.Message.ToString();
lblMsg.ForeColor=Color.Red;
}
GeneralRe: Email with embedded image Pin
varshavmane3-Sep-07 2:30
varshavmane3-Sep-07 2:30 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 2:39
.NET- India 3-Sep-07 2:39 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 2:48
.NET- India 3-Sep-07 2:48 
GeneralRe: Email with embedded image Pin
varshavmane3-Sep-07 2:59
varshavmane3-Sep-07 2:59 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 3:03
.NET- India 3-Sep-07 3:03 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 3:27
.NET- India 3-Sep-07 3:27 
GeneralRe: Email with embedded image Pin
varshavmane3-Sep-07 3:28
varshavmane3-Sep-07 3:28 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 3:31
.NET- India 3-Sep-07 3:31 
GeneralRe: Email with embedded image Pin
varshavmane3-Sep-07 3:41
varshavmane3-Sep-07 3:41 
GeneralRe: Email with embedded image Pin
.NET- India 3-Sep-07 3:44
.NET- India 3-Sep-07 3:44 
QuestionMenu control problem Pin
Naveed Kamboh3-Sep-07 2:19
Naveed Kamboh3-Sep-07 2:19 
AnswerRe: Menu control problem Pin
VenkataRamana.Gali3-Sep-07 2:30
VenkataRamana.Gali3-Sep-07 2:30 
GeneralRe: Menu control problem Pin
Naveed Kamboh3-Sep-07 4:04
Naveed Kamboh3-Sep-07 4:04 
QuestionGetHostEntry returns different results running on different server? Pin
rmatejka3-Sep-07 2:05
rmatejka3-Sep-07 2:05 
QuestionASP.NET Dates in Calander to display current day onwards(Not display prevoius date) Pin
subbu.sk3-Sep-07 2:02
subbu.sk3-Sep-07 2:02 
QuestionShow Total of DataGridView Column. Pin
varshavmane3-Sep-07 2:00
varshavmane3-Sep-07 2:00 
QuestionHow to Generate Dynamically SiteMap Control in asp.net2.0 Pin
mrgaddam3-Sep-07 1:39
mrgaddam3-Sep-07 1:39 

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.