<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Just Another Programming Blog</title>
	<atom:link href="http://nadiaamir.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nadiaamir.wordpress.com</link>
	<description>Tips,Tricks,Bugs and Soloution I Came Across During Development .</description>
	<lastBuildDate>Thu, 18 Jun 2009 10:29:27 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/407c532df0c19a5e47d37fa3e5943e6d?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Just Another Programming Blog</title>
		<link>http://nadiaamir.wordpress.com</link>
	</image>
			<item>
		<title>Cross Posting in ASP.net Webpage using Master Page</title>
		<link>http://nadiaamir.wordpress.com/2009/06/18/cross-posting-in-asp-net-webpage-using-master-page/</link>
		<comments>http://nadiaamir.wordpress.com/2009/06/18/cross-posting-in-asp-net-webpage-using-master-page/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 10:26:57 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=43</guid>
		<description><![CDATA[When you want to crosspage from a page, and your previous page is using master pages then take caution and dont simply try to find your desired control first. You need to find your control first in contentplaceholder of your master page and yes that make sense perfectly but why cant we developers think like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=43&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When you want to crosspage from a page, and your previous page is using master pages then take caution and dont simply try to find your desired control first. You need to find your control first in contentplaceholder of your master page and yes that make sense perfectly but why cant we developers think like that and google for tutorials <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' />  any ways here is the code in C# to find your desired control. If you have a FormView control in your previous page along with the master page then you also have to dig one more level to have your desired control.. here you go </p>
<p>protected void Page_Load(object sender, EventArgs e)<br />
    {<br />
        if (Page.PreviousPage != null)<br />
        {<br />
            ContentPlaceHolder ph = (ContentPlaceHolder)PreviousPage.Master.FindControl(&#8221;ContentPlaceHolder1&#8243;);<br />
            FormView fv = (FormView)ph.FindControl(&#8221;FormView1&#8243;);</p>
<p>            Label SourceRequestID = (Label)fv.FindControl(&#8221;IDLabel1&#8243;);<br />
            if (SourceRequestID != null)<br />
            {<br />
                txt1.Text = SourceRequestID.Text;<br />
            }<br />
        }</p>
<p>      }</p>
<p>Happy Cross Posting <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=43&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2009/06/18/cross-posting-in-asp-net-webpage-using-master-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Unable to send to all recipients.</title>
		<link>http://nadiaamir.wordpress.com/2009/04/22/unable-to-send-to-all-recipients/</link>
		<comments>http://nadiaamir.wordpress.com/2009/04/22/unable-to-send-to-all-recipients/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 06:43:15 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>
		<category><![CDATA[SMTP Errors]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=37</guid>
		<description><![CDATA[While transferring one of my application to another server this problem arises to my one ASP.net 2.0 application. First i thought to chek web.config to check all the SMPT setting for new server.And yes this is also the FIRST thing to do. But i find out the was a relay error. I just need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=37&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While transferring one of my application to another server this problem arises to my one ASP.net 2.0 application. First i thought to chek web.config to check all the SMPT setting for new server.And yes this is also the FIRST thing to do. But i find out the was a relay error. I just need to configure my smtp server to relay properly. </p>
<p><img src="http://nadiaamir.files.wordpress.com/2009/04/smtp.gif" alt="smtp relay" /></p>
<p>Just to go your IIS -&gt; Default SMTP Virtual Server -&gt; Properties -&gt; Access -&gt; Relay Restrictions<br />
and set the relay restricition properties according to your requirement and Eurekaaaa you are done.</p>
<p>Happy emailing<br />
Nadia</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=37&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2009/04/22/unable-to-send-to-all-recipients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>

		<media:content url="http://nadiaamir.files.wordpress.com/2009/04/smtp.gif" medium="image">
			<media:title type="html">smtp relay</media:title>
		</media:content>
	</item>
		<item>
		<title>Good Tutorials on itextsharp &#8212; a PDF Generator</title>
		<link>http://nadiaamir.wordpress.com/2009/03/18/tutorial-on-itextsharp-a-pdf-generator/</link>
		<comments>http://nadiaamir.wordpress.com/2009/03/18/tutorial-on-itextsharp-a-pdf-generator/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 05:36:53 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>
		<category><![CDATA[iTextSharp]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=29</guid>
		<description><![CDATA[I had to generate PDF in my ASP.net 2.0 web application and preferably with an open source code and i found itextsharp. But unfortunately i was unable to get a kickstart as there was not much help on it . But after some googling i got hands on one decent link which has some decent [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=29&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had to generate PDF in my ASP.net 2.0 web application and preferably with an open source code and i found itextsharp. But unfortunately i was unable to get a kickstart as there was not much help on it . But after some googling i got hands on one decent link which has some decent tutorials on itextsharp. </p>
<p>For those who dont know about iText# (iTextSharp) is a port of the iText open source java library written entirely in C# for the .NET platform. iText# is a library that allows you to generate PDF files on the fly. It is implemented as an assembly. You can download iTextSharp <a href="http://sourceforge.net/project/platformdownload.php?group_id=72954">at this link </a></p>
<p>Here is the link <a href="http://www.mikesdotnetting.com/Category.aspx?Category=20">Tutorials on iTextSharp</a>. And this <a href="http://www.mikesdotnetting.com/Article.aspx?ArticleID=80">link</a> will surely give you a quick start on creating PDFs in ASP.net 2.0 applications. </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=29&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2009/03/18/tutorial-on-itextsharp-a-pdf-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Mailbox Unavailable.The server response was 5.7.1. Unable to relay mail..</title>
		<link>http://nadiaamir.wordpress.com/2009/03/18/mailbox-unavailablethe-server-response-was-571-unable-to-relay-mail/</link>
		<comments>http://nadiaamir.wordpress.com/2009/03/18/mailbox-unavailablethe-server-response-was-571-unable-to-relay-mail/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 04:57:21 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=26</guid>
		<description><![CDATA[When this error comes this means your mail server considers itself being used as a mail relay. To remove this error you can simply add this line in your mail snippet and then happy mailing  
smtpClient.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;
I am  stating here sample C# code as well 
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=26&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When this error comes this means your mail server considers itself being used as a mail relay. To remove this error you can simply add this line in your mail snippet and then happy mailing <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p><strong>smtpClient.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;</strong></p>
<p>I am  stating here sample C# code as well </p>
<p>        SmtpClient smtpClient = new SmtpClient(&#8221;your server&#8221;);<br />
        MailMessage message = new MailMessage(&#8221;webmaster@testsite.com&#8221;, blhblah@testsite.com&#8221;);<br />
        message.Subject = &#8220;Subject Email&#8221;;<br />
        message.Body = &#8220;Body Email&#8221;;<br />
        message.Attachments.Add(new Attachment(path +&#8221;/doc1.pdf&#8221;));<br />
        smtpClient.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;<br />
        smtpClient.Send(message);</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=26&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2009/03/18/mailbox-unavailablethe-server-response-was-571-unable-to-relay-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Could not load file or assembly &#8216;CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304&#8242; or one of its dependencies. The system cannot find the file specified.</title>
		<link>http://nadiaamir.wordpress.com/2009/03/18/could-not-load-file-or-assembly-crystaldecisionscrystalreportsengine-version10236000-cultureneutral-publickeytoken692fbea5521e1304-or-one-of-its-dependencies-the-system-cannot-find-the/</link>
		<comments>http://nadiaamir.wordpress.com/2009/03/18/could-not-load-file-or-assembly-crystaldecisionscrystalreportsengine-version10236000-cultureneutral-publickeytoken692fbea5521e1304-or-one-of-its-dependencies-the-system-cannot-find-the/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 04:42:27 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[Crystal Report with VS 2005]]></category>
		<category><![CDATA[Crystal Reports]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=22</guid>
		<description><![CDATA[You have probably deployed your application with crystal report on to remote server and that server have not crystal reports installed. Find CRRedist2005_x86.msi on your local computer and isntalled it on the sever and atleast the error which the title of this post will be gone with wind
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=22&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You have probably deployed your application with crystal report on to remote server and that server have not crystal reports installed. Find CRRedist2005_x86.msi on your local computer and isntalled it on the sever and atleast the error which the title of this post will be gone with wind</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=22&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2009/03/18/could-not-load-file-or-assembly-crystaldecisionscrystalreportsengine-version10236000-cultureneutral-publickeytoken692fbea5521e1304-or-one-of-its-dependencies-the-system-cannot-find-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Element “ScriptManager” is not a known element. This can occur if there is a compilation error in the website</title>
		<link>http://nadiaamir.wordpress.com/2008/07/30/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/</link>
		<comments>http://nadiaamir.wordpress.com/2008/07/30/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 06:37:35 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=16</guid>
		<description><![CDATA[I didn&#8217;t expected this error would caused by master pages..  wiered enough&#8230;
any ways have a look at this link which worked for me
http://cosier.wordpress.com/2006/12/22/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/
even when you have done the above solution and a error  &#8220;Only one instance of a ScriptManager can be added to the page&#8221; then simply move your scriptmanager to the master page and then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=16&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I didn&#8217;t expected this error would caused by master pages..  wiered enough&#8230;</p>
<p>any ways have a look at this link which worked for me</p>
<p><a href="http://cosier.wordpress.com/2006/12/22/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/">http://cosier.wordpress.com/2006/12/22/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/</a></p>
<p>even when you have done the above solution and a error  <strong>&#8220;Only one instance of a ScriptManager can be added to the page&#8221; </strong>then simply move your scriptmanager to the master page and then just add update panal and content template to the page in concern.</p>
<p>Hope that helps</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nadiaamir.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nadiaamir.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=16&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2008/07/30/element-%e2%80%9cscriptmanager%e2%80%9d-is-not-a-known-element-this-can-occur-if-there-is-a-compilation-error-in-the-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.&#8221;</title>
		<link>http://nadiaamir.wordpress.com/2008/07/30/databinding-methods-such-as-eval-xpath-and-bind-can-only-be-used-in-the-context-of-a-databound-control/</link>
		<comments>http://nadiaamir.wordpress.com/2008/07/30/databinding-methods-such-as-eval-xpath-and-bind-can-only-be-used-in-the-context-of-a-databound-control/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 06:07:10 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=11</guid>
		<description><![CDATA[Phew&#8230; after googling for about a day and half .. i came across many solution to this error. Actually i wanted to cascade two dropdown lists in an edit mode of a formview control. I was trying to populate dropdownlist City on the basis of Country selected in Country dropdown list. (I was using little Ajax. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=11&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-size:7.5pt;color:#000000;font-family:Verdana;">Phew&#8230; after googling for about a day and half .. i came across many solution to this error. Actually i wanted to cascade two dropdown lists in an edit mode of a formview control. I was trying to populate dropdownlist City on the basis of Country selected in Country dropdown list. (I was using little Ajax. I had placed my two dropdowns in the updatecontrol panal with a scriptmanager )</span></p>
<p><span style="font-size:7.5pt;color:#000000;font-family:Verdana;">One solution that i came across was to make EnableViewSate to false. But it didnt work for me. The solution that actually worked for me was this </span></p>
<p><span style="font-size:7.5pt;color:#000000;font-family:Verdana;">Firstly I made My Country dropdownlist Autopostback property to true. And it was the <strong><span style="font-family:Verdana;">&#8220;SelectedValue&#8221; </span></strong><strong><span style="font-weight:normal;font-family:Verdana;">property of city dropdown list</span></strong><strong><span style="font-family:Verdana;"> <span> </span></span></strong>that was creating mess. I actually removed it and then my dropdown City looked like this </span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">&lt;</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">asp</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">:</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">ID</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;DropDownList4&#8243;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">runat</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;server&#8221;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">DataSourceID</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;dsCity&#8221;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">DataTextField </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;CityName&#8221; </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">DataValueField</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;Cityid&#8221;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">Width</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;225px&#8221;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#ff0000;font-family:Verdana;">OnDataBinding </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">=&#8221;DropDownList4_DataBound&#8221;&gt;</span></p>
<p><span style="font-size:7.5pt;color:#000000;font-family:Verdana;">Then i added two functions on two events. One on formview&#8217;s Itemupdating events and the other was on databound event of city dropdown. Here is the code</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">protected </span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">void</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> FormView1_ItemUpdating(</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">object</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> sender, </span><span style="font-size:10pt;color:#008080;font-family:Verdana;">FormViewUpdateEventArgs</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> e)</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">{ </span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">e.NewValues[</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">"CountryID"</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">] = ((</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)((</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">FormView</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)sender).FindControl(</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">&#8220;DropDownList3&#8243;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)).SelectedValue;</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">e.NewValues[</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">"Cityid"</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">] = ((</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)((</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">FormView</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)sender).FindControl(</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">&#8220;DropDownList4&#8243;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)).SelectedValue;</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">}</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">protected</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">void</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> DropDownList4_DataBound(</span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">object</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> sender, </span><span style="font-size:10pt;color:#008080;font-family:Verdana;">EventArgs</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> e)</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">{</span></p>
<p><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> ddl = (</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)sender;</span></p>
<p><span style="font-size:10pt;color:#008080;font-family:Verdana;">FormView</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> frmV = (</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">FormView</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)ddl.NamingContainer;</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">if</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> (frmV.DataItem != </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">null</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">{</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">string</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> strCity = ddl.SelectedValue.ToString();</span></p>
<p><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> ddlSubdivision = (</span><span style="font-size:10pt;color:#008080;font-family:Verdana;">DropDownList</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)frmV.FindControl(</span><span style="font-size:10pt;color:#800000;font-family:Verdana;">&#8220;DropDownList4&#8243;</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">);</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">ddl.ClearSelection();</span></p>
<p><span style="font-size:10pt;color:#008080;font-family:Verdana;">ListItem</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> lm = ddl.Items.FindByValue(strCity);</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">if</span><span style="font-size:10pt;color:#000000;font-family:Verdana;"> (lm == </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">null</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">)</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">{ ddl.SelectedIndex = 0; }</span></p>
<p><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">else</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">{ lm.Selected = </span><span style="font-size:10pt;color:#0000ff;font-family:Verdana;">true</span><span style="font-size:10pt;color:#000000;font-family:Verdana;">; }</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">}</span></p>
<p><span style="font-size:10pt;color:#000000;font-family:Verdana;">}</span></p>
<p><span style="font-size:x-small;font-family:Verdana;">note: thanks to this link <a href="http://www.webswapp.com/"><span style="font-size:small;">www.webswapp.com</span></a> </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nadiaamir.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nadiaamir.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=11&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2008/07/30/databinding-methods-such-as-eval-xpath-and-bind-can-only-be-used-in-the-context-of-a-databound-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration Error</title>
		<link>http://nadiaamir.wordpress.com/2008/02/21/configuration-error/</link>
		<comments>http://nadiaamir.wordpress.com/2008/02/21/configuration-error/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:17:44 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[ASP.net 2.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/?p=10</guid>
		<description><![CDATA[Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Unrecognized configuration section &#8216;connectionStrings&#8217;
Source Error:



Line 10: &#60;configuration&#62; Line 11: 	&#60;appSettings&#62;&#60;/appSettings&#62; Line 12: 	&#60;connectionStrings&#62; Line 13:   &#60;add name="ConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=&#124;DataDirectory&#124;\Database.mdf;Integrated Security=True;User Instance=True" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=10&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2><i>Configuration Error</i></h2>
<p><font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "><b>Description: </b>An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.</p>
<p><b>Parser Error Message: </b>Unrecognized configuration section &#8216;connectionStrings&#8217;</p>
<p><b>Source Error:</b></p>
<table bgColor="#ffffcc" width="100%">
<tr>
<td><code></p>
<pre>Line 10: &lt;configuration&gt; Line 11: 	&lt;appSettings&gt;&lt;/appSettings&gt; <font color="#ff0000">Line 12: 	&lt;connectionStrings&gt; </font>Line 13:   &lt;add name="ConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True" Line 14:    providerName="System.Data.SqlClient" /&gt;</pre>
<p></code></td>
</tr>
</table>
<p></font></p>
<p>This error can come when you have multiple versions of .net running under IIS . There may be other reasons as well,i am stating just one of them.  You can resolve this by going into IIS ,and by going into the website in question  properties  and going into ASP.net tab and setting the correct version of the .net .</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nadiaamir.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nadiaamir.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=10&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2008/02/21/configuration-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>To enable Search Pane in IE7</title>
		<link>http://nadiaamir.wordpress.com/2007/04/06/to-enable-search-pane-in-ie7/</link>
		<comments>http://nadiaamir.wordpress.com/2007/04/06/to-enable-search-pane-in-ie7/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 06:04:49 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/2007/04/06/to-enable-search-pane-in-ie7/</guid>
		<description><![CDATA[By default and for purely security purpose the search pane is disabled in IE7.  so &#8220;&#60;a target = _search .. &#62;&#8221; can not be uses any more.
 To enable it,one needs to go to  Tool -&#62; internet options &#8211; &#62; advance -&#62; enable search pane *
* It will require a restart of IE7
For more info do visist these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=9&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>By default and for purely security purpose the search pane is disabled in IE7.  so &#8220;&lt;a target = _search .. &gt;&#8221; can not be uses any more.</p>
<p> To enable it,one needs to go to  Tool -&gt; internet options &#8211; &gt; advance -&gt; enable search pane *</p>
<p><em>* It will require a restart of IE7</em></p>
<p>For more info do visist these microsoft links</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/workshop/essentials/whatsnew/whatsnew_70_sec.asp">http://msdn.microsoft.com/library/default.asp?url=/workshop/essentials/whatsnew/whatsnew_70_sec.asp</a></p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/target.asp">http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/target.asp</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nadiaamir.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nadiaamir.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=9&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2007/04/06/to-enable-search-pane-in-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
		<item>
		<title>Error : &#8220;No creatable public component detected&#8221;</title>
		<link>http://nadiaamir.wordpress.com/2007/03/14/error-no-creatable-public-component-detected/</link>
		<comments>http://nadiaamir.wordpress.com/2007/03/14/error-no-creatable-public-component-detected/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 05:31:37 +0000</pubDate>
		<dc:creator>Nadia Amir</dc:creator>
				<category><![CDATA[VB6.0]]></category>

		<guid isPermaLink="false">http://nadiaamir.wordpress.com/2007/03/14/error-no-creatable-public-component-detected/</guid>
		<description><![CDATA[While i was recompiling the Vb6.0 made ActiveX Dll i found this error . There was no error in code . After little bit of search and work around on class properties i found out that i have to made the class instancing property to Multiuse and the class was compiled without any error.  (you can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=8&subd=nadiaamir&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While i was recompiling the Vb6.0 made ActiveX Dll i found this error . There was no error in code . After little bit of search and work around on class properties i found out that i have to made the class instancing property to Multiuse and the class was compiled without any error.  (you can set the instancing property to any thing other then private to make a class publically creatable component)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nadiaamir.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nadiaamir.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nadiaamir.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nadiaamir.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nadiaamir.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nadiaamir.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nadiaamir.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nadiaamir.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nadiaamir.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nadiaamir.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nadiaamir.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nadiaamir.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nadiaamir.wordpress.com&blog=695992&post=8&subd=nadiaamir&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nadiaamir.wordpress.com/2007/03/14/error-no-creatable-public-component-detected/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/202099b1bdd407eef8cd8f5dfaeb09fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nadiaamir</media:title>
		</media:content>
	</item>
	</channel>
</rss>