AJAX Rounded Corners extender not getting displayed in email in ASP.Net -
i have displayed below html source in page , mailed same. rounded corners extender present in html not displayed in email sent.
<asp:panel id="pnldetails" backcolor="#f9f9f9" width="740px" runat="server"> <table width="100%"> <tr> <td> <span style="font-family: verdana; font-size: 11px; color: black; font-weight: bold;"> name:</span> </td> </tr> <tr> <td> <asp:label id="lblname" style="font-family: verdana; font-weight: normal; font-size: 11px; color: black; margin-left: 0px;" runat="server" text="-"></asp:label> </td> </tr> <tr> <td> <span style="font-family: verdana; font-size: 11px; color: black; font-weight: bold;"> address:</span> </td> </tr> <tr> <td> <asp:label id="lbladdress" style="font-family: verdana; font-weight: normal; font-size: 11px; color: black; margin-left: 0px;" runat="server" text="-"></asp:label> </td> </tr> </table> </td> <!-- extraneous? --> </tr> <!-- extraneous? --> </table> <!-- extraneous? --> </asp:panel> <cc1:roundedcornersextender id="roundedcornersextender1" corners="all" targetcontrolid="pnldetails" radius="6" bordercolor="#d5dcdf" runat="server"> </cc1:roundedcornersextender>
the entire html displayed in email except rounded corners alone not appear. if save email's html source html page , view in browser, rounded corners getting displayed perfectly. panel , rounded corners getting converted div's. following source of rounded corners extender present in email (when saved html got code):
<div style='border-left: #d5dcdf 1px solid; background-color: transparent; height: 1px; margin-left: 0px; font-size: 1px; overflow: hidden; margin-right: -2px; border-right: #d5dcdf 1px solid' __roundeddiv='true'></div> <div style='border-left: #d5dcdf 1px solid; background-color: transparent; height: 1px; margin-left: 0px; font-size: 1px; overflow: hidden; margin-right: -2px; border-right: #d5dcdf 1px solid' __roundeddiv='true'></div> <div style='border-left: #d5dcdf 1px solid; background-color: transparent; height: 1px; margin-left: 1px; font-size: 1px; overflow: hidden; margin-right: -1px; border-right: #d5dcdf 1px solid' __roundeddiv='true'></div> <div style='border-left: #d5dcdf 1px solid; background-color: transparent; height: 1px; margin-left: 2px; font-size: 1px; overflow: hidden; margin-right: 0px; border-right: #d5dcdf 1px solid' __roundeddiv='true'></div>
it normal html except property __roundeddiv='true' different normal html code!
for top left, top right, top , bottom part of rounded corner extender, separate div created borders. borders not getting displayed in email!
please guide me display rounded corners in email.
no ajax , no asp.net in email. can use html, tables, images, , inline css.
for rounded corners, need create image , position table.
Comments
Post a Comment