<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.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>Drew's Blog - All Comments</title><link>http://weblogs.asp.net/dmarsh/default.aspx</link><description>The Joys of Technology Explored</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: I've Got My Tickets, How 'Bout You?</title><link>http://weblogs.asp.net/dmarsh/archive/2003/11/02/35405.aspx#7245279</link><pubDate>Mon, 02 Nov 2009 14:17:57 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7245279</guid><dc:creator>Jeremy</dc:creator><description>&lt;p&gt;My favourite way to revenge a girlfriend for cheating on me is to meat with hot escort women from &amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://www.baccaratgirls.com/&amp;quot;&amp;gt;Escorts&amp;lt;/a&amp;gt;"&gt;www.baccaratgirls.com/.../a&amp;gt;&lt;/a&gt;. That escort industry is greatly in demand in London.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7245279" width="1" height="1"&gt;</description></item><item><title>re: I've Got My Tickets, How 'Bout You?</title><link>http://weblogs.asp.net/dmarsh/archive/2003/11/02/35405.aspx#7244974</link><pubDate>Mon, 02 Nov 2009 06:33:43 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7244974</guid><dc:creator>Steave</dc:creator><description>&lt;p&gt;By the way, the best way to protect yourself from spy devices and annoying calls is to use &amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://www.jammer-store.com/&amp;quot;&amp;gt;Cell"&gt;www.jammer-store.com/&amp;quot;&amp;gt;Cell&lt;/a&gt; blocker&amp;lt;/a&amp;gt;. Disable mobiles around you.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7244974" width="1" height="1"&gt;</description></item><item><title>re: I've Got My Tickets, How 'Bout You?</title><link>http://weblogs.asp.net/dmarsh/archive/2003/11/02/35405.aspx#7242276</link><pubDate>Thu, 29 Oct 2009 08:55:41 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7242276</guid><dc:creator>Steave</dc:creator><description>&lt;p&gt;Interesting article you got here. I'd like to read something more about that theme.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7242276" width="1" height="1"&gt;</description></item><item><title>re: Keeping Your ASP.NET Worker Processes Alive</title><link>http://weblogs.asp.net/dmarsh/archive/2003/02/21/2758.aspx#7240976</link><pubDate>Tue, 27 Oct 2009 23:30:09 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7240976</guid><dc:creator>mapick</dc:creator><description>&lt;p&gt;I forget! You must start the timer:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.Timers.Timer timer = new System.Timers.Timer(5 * 60 * 1000);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; timer.Elapsed += new System.Timers.ElapsedEventHandler(unsleap);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;timer.AutoReset = true;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;timer.Enabled = true;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7240976" width="1" height="1"&gt;</description></item><item><title>re: Keeping Your ASP.NET Worker Processes Alive</title><link>http://weblogs.asp.net/dmarsh/archive/2003/02/21/2758.aspx#7240941</link><pubDate>Tue, 27 Oct 2009 22:29:16 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7240941</guid><dc:creator>mapick</dc:creator><description>&lt;p&gt;I found also this simple solution to put in global.asax&lt;/p&gt;
&lt;p&gt;void Application_Start(Object sender, EventArgs e)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Periodically self-call to avoid Apllication closing&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.Timers.Timer timer = new System.Timers.Timer(5 * 60 * 1000);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;timer.Elapsed += new System.Timers.ElapsedEventHandler(unsleap);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;void unsleap(object sender, System.Timers.ElapsedEventArgs e)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.Net.WebRequest rqst = &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.Net.WebRequest.Create(&amp;quot;&lt;a rel="nofollow" target="_new" href="http://jobaweb.net&amp;quot;"&gt;http://jobaweb.net&amp;quot;&lt;/a&gt;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;rqst.GetResponse();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7240941" width="1" height="1"&gt;</description></item><item><title>re: Comments on FedEx Aquisition of Kinko's</title><link>http://weblogs.asp.net/dmarsh/archive/2003/12/30/46744.aspx#7234596</link><pubDate>Wed, 21 Oct 2009 06:54:56 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7234596</guid><dc:creator>jp</dc:creator><description>&lt;p&gt;their not good.....&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7234596" width="1" height="1"&gt;</description></item><item><title>re: Useless Exception Messages</title><link>http://weblogs.asp.net/dmarsh/archive/2002/06/16/492.aspx#7232889</link><pubDate>Mon, 19 Oct 2009 09:36:26 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7232889</guid><dc:creator>gulroo</dc:creator><description>&lt;p&gt;hello,&lt;/p&gt;
&lt;p&gt;i also encounter the samw problem .. and in my case my stored procedure working absolutly fine in preview data area.. but it go nuts when i call it in a web service and gives same above mentioned error...:(&lt;/p&gt;
&lt;p&gt;any idea...y??&lt;/p&gt;
&lt;p&gt;i try to resolve it and it go ok&lt;/p&gt;
&lt;p&gt;but the issue is &lt;/p&gt;
&lt;p&gt;i cant return single column it also demand for PK column my requirmnt is to return only acessitem column.. but error exist.. but if i return id column &amp;nbsp;which is PK_ tis goes alfine... i dunt get what the problem is???????&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7232889" width="1" height="1"&gt;</description></item><item><title>re: VBTV</title><link>http://weblogs.asp.net/dmarsh/archive/2002/08/08/585.aspx#7223897</link><pubDate>Tue, 06 Oct 2009 06:41:14 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7223897</guid><dc:creator>Daniel</dc:creator><description>&lt;p&gt;VBTV is back! On your computer anyway. The original and only 4 shows are available to download again:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://daniel-mcadam.com/blog/2009/10/06/VBTV-Video-Download.aspx"&gt;daniel-mcadam.com/.../VBTV-Video-Download.aspx&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7223897" width="1" height="1"&gt;</description></item><item><title>re: Dr. GUI .NET on strings in .NET</title><link>http://weblogs.asp.net/dmarsh/archive/2002/06/10/463.aspx#7221258</link><pubDate>Thu, 01 Oct 2009 20:20:08 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7221258</guid><dc:creator>SGWellens</dc:creator><description>&lt;p&gt;The links in this string:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Dr. GUI .NET on strings in .NET&lt;/p&gt;
&lt;p&gt;do not work.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7221258" width="1" height="1"&gt;</description></item><item><title>re: Cg is to vertex shader assembly as C++ is to x86 assembly</title><link>http://weblogs.asp.net/dmarsh/archive/2002/06/13/481.aspx#7200856</link><pubDate>Fri, 11 Sep 2009 13:38:11 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7200856</guid><dc:creator>Hoshiko</dc:creator><description>&lt;p&gt;Good afternoon. To be willing to die for an idea is to set a rather high price on conjecture. Help me! Please help find sites for: He has involved to lock a naked significance service level, and decide the show image.. I found only this - [URL=&lt;a rel="nofollow" target="_new" href="http://www.khuyennongvn.gov.vn/Members/Lacewigs"&gt;www.khuyennongvn.gov.vn/.../Lacewigs&lt;/a&gt;]beyonce lace wigs[/URL]. It is not considered, for wig, by students when taking mass and by black bounces. Apply lace wigs, they never surface the humanitarian decade design, while thinking over countries and cowriting from customs. With respect ;-), Hoshiko from Republic.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7200856" width="1" height="1"&gt;</description></item></channel></rss>