<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msforge.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>Morning Break - All Comments</title><link>http://msforge.net/blogs/janko/default.aspx</link><description>Coffee, web development and desgn</description><dc:language>en</dc:language><generator>CommunityServer 2008 (Build: 30417.1769)</generator><item><title>re: LINQ to SQL Overview</title><link>http://msforge.net/blogs/janko/archive/2008/01/28/linq-to-sql-overview.aspx#2172</link><pubDate>Thu, 19 Jun 2008 11:09:31 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2172</guid><dc:creator>santhu</dc:creator><description>&lt;p&gt;CMSCategoriesDataContext db = new CMSCategoriesDataContext();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var cnt = from c in&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db.Categories.Single(c =&amp;gt; c.CategoryName == &amp;quot;Apparel&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select c;&lt;/p&gt;
&lt;p&gt;The above coding does not working to me. it shows the error as following:&lt;/p&gt;
&lt;p&gt;&amp;quot;Could not find an implementation of the query pattern for source type &amp;#39;CMSCategory.Category&amp;#39;. &amp;#39;Select&amp;#39; not found.&lt;/p&gt;
&lt;p&gt;its based on ur query. Then y should i get this error message. How can I overcome this? Pls tell me the solution.&lt;/p&gt;
&lt;p&gt;mail Id: yeskaytnj@gmail.com&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2172" width="1" height="1"&gt;</description></item><item><title>re: LINQ to SQL Overview</title><link>http://msforge.net/blogs/janko/archive/2008/01/28/linq-to-sql-overview.aspx#2170</link><pubDate>Thu, 19 Jun 2008 07:38:39 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2170</guid><dc:creator>santhu</dc:creator><description>&lt;p&gt;How can we restrict the inserting values is already exist in the database in LINQ&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2170" width="1" height="1"&gt;</description></item><item><title>re: LINQ to SQL Overview</title><link>http://msforge.net/blogs/janko/archive/2008/01/28/linq-to-sql-overview.aspx#2169</link><pubDate>Thu, 19 Jun 2008 06:58:55 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2169</guid><dc:creator>santhu</dc:creator><description>&lt;p&gt;great job! give me ur some other links in LINQ.&lt;/p&gt;
&lt;p&gt;Thanks...&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2169" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET ListView control and LinqDataSource - Display data without a line of code</title><link>http://msforge.net/blogs/janko/archive/2008/02/06/asp-net-listview-control-and-linqdatasource-display-data-without-a-line-of-code.aspx#2140</link><pubDate>Tue, 10 Jun 2008 09:25:14 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2140</guid><dc:creator>Affordable Website Design Ireland</dc:creator><description>&lt;p&gt;I&amp;#39;ve come up on this page by accident - very good tutorial! List View control is very powerful.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2140" width="1" height="1"&gt;</description></item><item><title>re: Extension methods in C# and .NET Framework 3.5</title><link>http://msforge.net/blogs/janko/archive/2008/03/21/extension-methods-in-c-and-net-framework-3-5.aspx#2124</link><pubDate>Sat, 07 Jun 2008 10:46:20 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2124</guid><dc:creator>sherpes</dc:creator><description>&lt;p&gt;Just because YOU CAN doesn&amp;#39;t mean it is necessarily a good thing to do. &amp;nbsp;Extending a class&amp;#39;s API with additional signatures means diverting the original designer&amp;#39;s intent with your own custom design, additionally polluting the namespace. &amp;nbsp;Case in point: &amp;nbsp;the DateTime class. &amp;nbsp;It is well known to all that it doesn&amp;#39;t have much information of month names. &amp;nbsp;That&amp;#39;s because it is found in GregorianCalendar, when the culture info is United States and using the English language. &amp;nbsp;So, getting today&amp;#39;s month name is a bit cumbersome, having to use many separate classes just to get that info. &amp;nbsp; Ever tried populating a dropdown listbox with english month names, January to December? not so obvious... &amp;nbsp;So, the developer might be tempted on extending the DateTime class with MonthNameArray that returns string[] (an array of strings). &amp;nbsp;Fine. &amp;nbsp;That was in one departmental project. &amp;nbsp;In another departmental project, they might be doing their own custom extensions to the DateTime class. &amp;nbsp;Then, developers migrate from one project to another, and bring with them their own personal extensions, and add them again to the new project&amp;#39;s DateTime class. &amp;nbsp;OK, now, pressing the dot shows IntelliSense retrieving HUNDREDS of new methods, some may be named PrintMMDDYYYY, PrintLongMonthDayLongYear, etc etc. &amp;nbsp;Just imagine when a manager wants to merge these two apps. &amp;nbsp; You might just have two separate methods, similarly named, that might just do almost the same thing. &amp;nbsp;Or, what about when you &amp;quot;reuse&amp;quot; some code, but this code is invoking methodds that don&amp;#39;t exist in your DateTime class... Guess what: &amp;nbsp;you will be forced to extend your DateTime class with their extensions. &amp;nbsp;This is a new feature that is being allowed by the compiler. &amp;nbsp;People think it is cool. Great. &amp;nbsp;Now the gates are open. &amp;nbsp;Before going gung-ho on these extensions, consult with other developers that have used them in other programming environments, and ask them about the pros and cons, specially after a couple of years on a project. &amp;nbsp;You will see there is a price in future maintenability. &amp;nbsp;My advice: &amp;nbsp;add extensions to a class only when there is no other way to do what you want to do. &amp;nbsp;If there is a different pattern or helper class that achieves the same goal, go for that solution. &amp;nbsp;If you inherited a DLL-ized component for which you do not have the source code, and the API framework that you are using requires that this DLL-ized component, in order to be usable, needs to understand the message being sent to it named &amp;quot;DisplayValueName&amp;quot; and it takes a signature of &amp;quot;string, int&amp;quot;, then, go ahead, and extend that DLL-ized component with public void DisplayValueName (string param1, string param2)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2124" width="1" height="1"&gt;</description></item><item><title>re: Unit testing aspx pages with WatiN tool</title><link>http://msforge.net/blogs/janko/archive/2008/03/27/unit-testing-aspx-pages-with-watin-tool.aspx#2015</link><pubDate>Fri, 30 May 2008 07:44:06 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2015</guid><dc:creator>Leo</dc:creator><description>&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[Row(&amp;quot;Anson&amp;quot;, &amp;quot;PaulMan&amp;quot;)]&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[Row(&amp;quot;Mike&amp;quot;, &amp;quot;Bu&amp;quot;)]&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[Row(&amp;quot;Doug&amp;quot;, &amp;quot;Johson&amp;quot;)]&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[RowTest]&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public void SearchByName(string firstName, string lastName)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;home.SearchByName(firstName, lastName);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IE popup = IE.AttachToIE(Find.ByTitle(&amp;quot;United States Tennis Association - Stats and Standings Reports&amp;quot;));&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assert.IsTrue(popup.ContainsText(firstName));&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;popup.Close();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2015" width="1" height="1"&gt;</description></item><item><title>re: Demo kod i slajdovi sa predavanja "ASP.NET primeri za postizanje boljeg korisničkog iskustva"</title><link>http://msforge.net/blogs/janko/archive/2008/05/29/demo-kod-i-slajdovi-sa-predavanja-quot-asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-quot.aspx#2001</link><pubDate>Thu, 29 May 2008 09:05:04 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2001</guid><dc:creator>janko</dc:creator><description>&lt;p&gt;Ispravljeno, bice vidljivo za koji minut, cim clanak u potpunosti bude re-publishovan.&lt;/p&gt;
&lt;p&gt;Hvala!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2001" width="1" height="1"&gt;</description></item><item><title>re: Demo kod i slajdovi sa predavanja "ASP.NET primeri za postizanje boljeg korisničkog iskustva"</title><link>http://msforge.net/blogs/janko/archive/2008/05/29/demo-kod-i-slajdovi-sa-predavanja-quot-asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-quot.aspx#2000</link><pubDate>Thu, 29 May 2008 09:00:37 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:2000</guid><dc:creator>dart</dc:creator><description>&lt;p&gt;Linkovi na clanke ne rade.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=2000" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET primeri za postizanje boljeg korisničkog iskustva - MSDN Day 2008</title><link>http://msforge.net/blogs/janko/archive/2008/05/19/asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-msdn-day-2008.aspx#1983</link><pubDate>Tue, 27 May 2008 07:22:10 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1983</guid><dc:creator>Paki</dc:creator><description>&lt;p&gt;Postojao je mali bug u aplikaciji koji je sada ispravljen, tako da ce se sav mailing odvijati bez problema.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1983" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET primeri za postizanje boljeg korisničkog iskustva - MSDN Day 2008</title><link>http://msforge.net/blogs/janko/archive/2008/05/19/asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-msdn-day-2008.aspx#1978</link><pubDate>Mon, 26 May 2008 16:59:16 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1978</guid><dc:creator>milosmalic</dc:creator><description>&lt;p&gt;Stigao mi je email, jedno 4 sata posle popunjene prijave. A potvrda mi je stigla odmah po kliku na link.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1978" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET primeri za postizanje boljeg korisničkog iskustva - MSDN Day 2008</title><link>http://msforge.net/blogs/janko/archive/2008/05/19/asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-msdn-day-2008.aspx#1977</link><pubDate>Mon, 26 May 2008 14:45:20 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1977</guid><dc:creator>janko</dc:creator><description>&lt;p&gt;Huh, i nekoliko mojih kolega mi je isto reklo. Pogledacu najhitnije pa cu na forumu ostaviti resenje :)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1977" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET primeri za postizanje boljeg korisničkog iskustva - MSDN Day 2008</title><link>http://msforge.net/blogs/janko/archive/2008/05/19/asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-msdn-day-2008.aspx#1976</link><pubDate>Mon, 26 May 2008 13:11:41 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1976</guid><dc:creator>milosmalic</dc:creator><description>&lt;p&gt;Mozda mozes da mi pomognes. Ja se prijavih, kao i jos nekoliko kolega. I pored poruke da je registracija prihvacena i da email potvrde treba ocekivati - jos uvek ga niko nije dobio.&lt;/p&gt;
&lt;p&gt;?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1976" width="1" height="1"&gt;</description></item><item><title>re: ASP.NET primeri za postizanje boljeg korisničkog iskustva - MSDN Day 2008</title><link>http://msforge.net/blogs/janko/archive/2008/05/19/asp-net-primeri-za-postizanje-boljeg-korisni-kog-iskustva-msdn-day-2008.aspx#1927</link><pubDate>Mon, 19 May 2008 15:38:20 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1927</guid><dc:creator>Paki</dc:creator><description>&lt;p&gt;Janko, stavi www ispred adrese MSDN sajta&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1927" width="1" height="1"&gt;</description></item><item><title>re: URL rewriting in ASP.NET 2.0</title><link>http://msforge.net/blogs/janko/archive/2007/12/17/url-rewriting-in-asp-net-2-0.aspx#1853</link><pubDate>Mon, 12 May 2008 12:25:11 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1853</guid><dc:creator>milap</dc:creator><description>&lt;p&gt;thanks i find solution which i want.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msforge.net/aggbug.aspx?PostID=1853" width="1" height="1"&gt;</description></item><item><title>Internet Business Training Program</title><link>http://msforge.net/blogs/janko/archive/2008/03/21/test-your-web-site-in-different-browsers-and-platforms.aspx#1841</link><pubDate>Sat, 10 May 2008 11:43:48 GMT</pubDate><guid isPermaLink="false">eac9713b-2f02-402a-9a4f-ffef465a45c7:1841</guid><dc:creator>Internet Business Training Program</dc:creator><description>&lt;p&gt;a shopping cart of ads&lt;/p&gt;
&lt;img src="http://msforge.net/aggbug.aspx?PostID=1841" width="1" height="1"&gt;</description></item></channel></rss>