M
Mansi Shah
Hi all,
I have written a code in C# (using StringBuilder) to create mail
subject.
Which is like this:
string Logourl=Request.Url.Scheme + "://" + Request.Url.Authority +
Request.ApplicationPath.TrimEnd('/') + "/" + "/Images/logo.gif";
str = str.Append("<table width='100%' align='center' cellpadding='0'
cellspacing='0' class='shoppingcart> " +
"<tr align='center' style='font:11px/14px Verdana, Arial, Helvetica,
sans-serif; color:#4c4c4c'><td align='center' rowspan='1'
valign='middle' style='height: 71px'><img src= " + LogoURL + "
/></td></tr>" +
"<tr><td><b>Order Date:- </b>" + lblDate + "</td></tr></table>);
mail.body=str;
It sends the mail, displays all other data but not displaying the
logo...displays Blank image button.
can anyone have idea?
Thanks & Regards,
Mansi Shah.
I have written a code in C# (using StringBuilder) to create mail
subject.
Which is like this:
string Logourl=Request.Url.Scheme + "://" + Request.Url.Authority +
Request.ApplicationPath.TrimEnd('/') + "/" + "/Images/logo.gif";
str = str.Append("<table width='100%' align='center' cellpadding='0'
cellspacing='0' class='shoppingcart> " +
"<tr align='center' style='font:11px/14px Verdana, Arial, Helvetica,
sans-serif; color:#4c4c4c'><td align='center' rowspan='1'
valign='middle' style='height: 71px'><img src= " + LogoURL + "
/></td></tr>" +
"<tr><td><b>Order Date:- </b>" + lblDate + "</td></tr></table>);
mail.body=str;
It sends the mail, displays all other data but not displaying the
logo...displays Blank image button.
can anyone have idea?
Thanks & Regards,
Mansi Shah.