<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msdnbangladesh.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>zahid's blog - All Comments</title><link>http://msdnbangladesh.net/blogs/zahid/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Debug Build: 31106.3070)</generator><item><title>re: XBAP versus Silverlight application</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/06/24/xbap-versus-silverlight-application.aspx#1396</link><pubDate>Wed, 01 Jul 2009 05:38:56 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:1396</guid><dc:creator>MD.ZAHIDUL ISLAM</dc:creator><description>&lt;p&gt;Thank you Md Nazmul Ahsan.&lt;/p&gt;
&lt;p&gt;I know a lots of debate around us about the Backward Compatibility of Silverlight 3.&lt;/p&gt;
&lt;p&gt;One of the goals of new versions of Silverlight is to be be backward compatible with previous versions. So that people can keep their previous applications deployed while not worrying that people with newer Silverlight will have a broken experience.&lt;/p&gt;
&lt;p&gt;Check your Silverlight 2 apps for compatibility with Silverlight 3. &lt;/p&gt;
&lt;p&gt;you can get more information about how to check Silverlight 2 apps are compatible with Silverlight 3: &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://timheuer.com/blog/archive/2009/06/05/verify-your-silverlight-application-compatibility.aspx"&gt;timheuer.com/.../verify-your-silverlight-application-compatibility.aspx&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=1396" width="1" height="1"&gt;</description></item><item><title>re: XBAP versus Silverlight application</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/06/24/xbap-versus-silverlight-application.aspx#1394</link><pubDate>Wed, 01 Jul 2009 03:27:30 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:1394</guid><dc:creator>Md Nazmul Ahsan</dc:creator><description>&lt;p&gt;Great job... Now it is clear to me when I have to use Silverlight or WPF Browser Application.&lt;/p&gt;
&lt;p&gt;One issue is with it player, it is already become &amp;lt; 6 with v3.&lt;/p&gt;
&lt;p&gt;One ? &amp;gt;&amp;gt; Does silverlight v3 support backward comparability?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=1394" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#480</link><pubDate>Thu, 02 Apr 2009 21:30:22 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:480</guid><dc:creator>MD.ZAHIDUL ISLAM</dc:creator><description>&lt;p&gt;Thank you Shaoun for your comments and demo code.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=480" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#479</link><pubDate>Thu, 02 Apr 2009 19:58:58 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:479</guid><dc:creator>Shaoun</dc:creator><description>&lt;p&gt;Hello, Thanks for your reply. I am not talking about adding attachment. I am talking about sending image as an embedded image. You have to create the message content in multiple view. That is plain text view and HTML view. Then you have to create a linked resource and add that to the HTML view. Combine them and send it. Here is the code:&lt;/p&gt;
&lt;p&gt;Dim plainView as New AlternateView= AlternateView.CreateAlternateViewFromString(&amp;quot;Plain text part can be viewed by those clients that don&amp;#39;t support html&amp;quot;, null, &amp;quot;text/plain&amp;quot;)&lt;/p&gt;
&lt;p&gt;Dim htmlview as New AlternateView=AlternateView.CreateAlternateViewFromString(&amp;quot;Here is an embedded image.&amp;quot;&amp;quot;, null, &amp;quot;text/html&amp;quot;)&lt;/p&gt;
&lt;p&gt;Dim logo as new LinkedResource = LinkedResource( &amp;quot;c:\temp\companylogo.gif&amp;quot; )&lt;/p&gt;
&lt;p&gt;logo.ContentId = &amp;quot;logo&amp;quot;&lt;/p&gt;
&lt;p&gt;htmlView.LinkedResources.Add(logo)&lt;/p&gt;
&lt;p&gt;mail.AlternateViews.Add(plainView)&lt;/p&gt;
&lt;p&gt;mail.AlternateViews.Add(htmlView)&lt;/p&gt;
&lt;p&gt;That is the correct way of sending embedded images. Also, it has a great advantages. If some client is unable to view the HTML part then .net mail class will deliver the plain text part. Thank you.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=479" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#416</link><pubDate>Mon, 30 Mar 2009 06:41:53 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:416</guid><dc:creator>MD.ZAHIDUL ISLAM</dc:creator><description>&lt;p&gt;If you check the WPFEmailer Class closely, you will find AttachmentPath where you have to specify the path of your image resource.&lt;/p&gt;
&lt;p&gt;If you want to send &amp;quot;test.gif&amp;quot; image, you have to write the following code:&lt;/p&gt;
&lt;p&gt;.....................................................&lt;/p&gt;
&lt;p&gt;wpfEmailer.Attachments.Add(new &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Attachment(&amp;quot;c:\\test.gif&amp;quot;));&lt;/p&gt;
&lt;p&gt;.....................................................&lt;/p&gt;
&lt;p&gt;Enjoy sending Email.Thank you.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=416" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#410</link><pubDate>Mon, 30 Mar 2009 05:45:07 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:410</guid><dc:creator>Md Nazmul Ahsan</dc:creator><description>&lt;p&gt;You can attached the image file as email attachment using following code line.&lt;/p&gt;
&lt;p&gt;==========================================================&lt;/p&gt;
&lt;p&gt;oMessage.Attachments.Add(new Attachment([Attachment Path]));&lt;/p&gt;
&lt;p&gt;==========================================================&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=410" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#389</link><pubDate>Fri, 27 Mar 2009 21:16:28 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:389</guid><dc:creator>Shaoun</dc:creator><description>&lt;p&gt;What will happen if we want to send an image as image resource?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=389" width="1" height="1"&gt;</description></item><item><title>re: Sending Email using WPF and C#</title><link>http://msdnbangladesh.net/blogs/zahid/archive/2009/03/23/sending-email-using-wpf-and-c.aspx#388</link><pubDate>Fri, 27 Mar 2009 21:15:35 GMT</pubDate><guid isPermaLink="false">019a604b-fb74-42d5-8a6d-7cedfb08f61c:388</guid><dc:creator>Shaoun</dc:creator><description>&lt;p&gt;What will happen if we want to send an image as image resource?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msdnbangladesh.net/aggbug.aspx?PostID=388" width="1" height="1"&gt;</description></item></channel></rss>
