<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Enterprise ASP.NET Suite</title><link>http://aspnetsuite.codeplex.com/project/feeds/rss</link><description>Incorporates everything you need for an enterprise ASP.NET application into a suite of easy-to-use libraries. There&amp;#39;s support for easy localization, e-mail &amp;#40;and e-mail templating with localization&amp;#41;, custom configuration on a per-machine basis, URL rewriting, Windows services with UAC, payment gateway processing, and more.      Pick and choose what you want in your site. Utilize all the features or just a few - it&amp;#39;s as extensible as you need it to be.</description><item><title>Source code checked in, #80132</title><link>http://aspnetsuite.codeplex.com/SourceControl/changeset/changes/80132</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:49:39 GMT</pubDate><guid isPermaLink="false">Source code checked in, #80132 20121001094939P</guid></item><item><title>Source code checked in, #80131</title><link>http://aspnetsuite.codeplex.com/SourceControl/changeset/changes/80131</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:43:10 GMT</pubDate><guid isPermaLink="false">Source code checked in, #80131 20121001094310P</guid></item><item><title>New Post: Link Point 02006 "Please Contact Merchant Services."</title><link>http://aspnetsuite.codeplex.com/Thread/View.aspx?ThreadId=223596</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm having some trouble with the LinkPoint code.&amp;nbsp; It appears to be almost working since I get an actual LinkPoint error, but I'm not sure why and I thought I would post my code here to see if I could get help.&lt;/p&gt;
&lt;p&gt;
&lt;div style="color:black;background-color:white"&gt;
&lt;pre&gt;    &lt;span style="color:blue"&gt;Public&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt; Testing(&lt;span style="color:blue"&gt;ByVal&lt;/span&gt; certPath &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;String&lt;/span&gt;, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; certPassword &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;String&lt;/span&gt;, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; amount &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Double&lt;/span&gt;)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; cert &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; X509Certificate2(certPath, certPassword, X509KeyStorageFlags.PersistKeySet)
        
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; gateway = Factory.CreateNew(SupportedVersion.V3_5)

        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; trans &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; LinkPointTransactionInformation(LinkPointTransactionType.Sale, LinkPointTransactionOrigin.Internet)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; payment &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; LinkPointPaymentInformation(amount)

        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; billing &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; LinkPointBillingInformation(&lt;span style="color:#a31515"&gt;&amp;quot;Test T User&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;100 Some AVE&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;Somewhere&amp;quot;&lt;/span&gt;, USState.Washington, &lt;span style="color:#a31515"&gt;&amp;quot;99301&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;(555)123-4567)&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;user@gmail.com&amp;quot;&lt;/span&gt;)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; shipping &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; LinkPointShippingInformation(LinkPointShippingMethod.TotalPrice, &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;, &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;, &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;, payment.Total, 0.0, billing)

        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; cc &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; LinkPointCreditCardInformation(billing.Name, &lt;span style="color:#a31515"&gt;&amp;quot;4005550000000019&amp;quot;&lt;/span&gt;, 10, 11, &lt;span style="color:#a31515"&gt;&amp;quot;123&amp;quot;&lt;/span&gt;)

        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; resp = gateway.CreditCardSale(&lt;span style="color:#a31515"&gt;&amp;quot;staging.linkpt.net&amp;quot;&lt;/span&gt;, 1129, &lt;span style="color:#a31515"&gt;&amp;quot;1909389757&amp;quot;&lt;/span&gt;, cert, trans, payment, cc, billing, shipping, &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;)

    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;When I run this code the Response has the error number &amp;quot;02006&amp;quot; and the error message &amp;quot;Please contact merchant services.&amp;quot;.&amp;nbsp; The certificate is being loaded correctly since I can see all the info it contains.&amp;nbsp; I re-downloaded the certificates earlier today just to make sure they hadn't changed.&amp;nbsp; Any help would be GREATLY appreciated.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br&gt;--Peter&lt;/p&gt;&lt;/div&gt;</description><author>patricker</author><pubDate>Sat, 14 Aug 2010 22:13:28 GMT</pubDate><guid isPermaLink="false">New Post: Link Point 02006 "Please Contact Merchant Services." 20100814101328P</guid></item><item><title>Source code checked in, #55373</title><link>http://aspnetsuite.codeplex.com/SourceControl/changeset/changes/55373</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Mon, 02 Aug 2010 22:49:34 GMT</pubDate><guid isPermaLink="false">Source code checked in, #55373 20100802104934P</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Wed, 21 Jan 2009 22:41:41 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20090121104141P</guid></item><item><title>Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Wed, 21 Jan 2009 22:41:38 GMT</pubDate><guid isPermaLink="false">Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20090121104138P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/aspnetSuite/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Incorporates everything you need for an enterprise ASP.NET application into a suite of easy-to-use libraries. There&amp;#39;s support for easy localization, e-mail &amp;#40;and e-mail templating with localization&amp;#41;, custom configuration on a per-machine basis, URL rewriting, Windows services with UAC, payment gateway processing, and more.&lt;br /&gt;&lt;br /&gt;Pick and choose what you want in your site. Utilize all the features or just a few - it&amp;#39;s as extensible as you need it to be.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Homepage&lt;/b&gt;&lt;br /&gt;Please visit &lt;a href="http://www.hoytsoft.org/suite.aspx" class="externalLink"&gt;http://www.hoytsoft.org/suite.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; for more information about this project and for details about some of the other included libraries.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Source&lt;/b&gt;&lt;br /&gt;Please vist &lt;a href="http://aspnetsuite.svn.sourceforge.net/viewvc/aspnetsuite/trunk/" class="externalLink"&gt;http://aspnetsuite.svn.sourceforge.net/viewvc/aspnetsuite/trunk/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; to browse the source.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;License&lt;/b&gt;&lt;br /&gt;The suite is actually distributed under the CPOL: &lt;a href="http://www.codeproject.com/info/cpol10.aspx" class="externalLink"&gt;http://www.codeproject.com/info/cpol10.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. There wasn't an option on CodePlex for this license, so I chose the next best thing. Please refer to the license that comes with the suite for more information.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Participation&lt;/b&gt;&lt;br /&gt;Please e-mail questions@hoytsoft.org to participate.&lt;br /&gt; &lt;br /&gt;&lt;i&gt;We need help with documentation! If you are willing to assist, please let us know!&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Updates&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;July 29, 2008&lt;/i&gt;: Added enterprise example to baseline v1.0.0 download. This brings the other examples together and shows how to integrate Windows services with a SQL Server 2005 database and ASP.NET website.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Tue, 12 Aug 2008 05:56:48 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20080812055648A</guid></item><item><title>Created Issue: Mass Emailer</title><link>http://www.codeplex.com/aspnetSuite/WorkItem/View.aspx?WorkItemId=1889</link><description>How about a service that will integrate with MSMQ to do mass e-mailing&amp;#63; Again, please vote if you think this would be a good idea.&lt;br /&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 18:45:24 GMT</pubDate><guid isPermaLink="false">Created Issue: Mass Emailer 20080730064524P</guid></item><item><title>Created Feature: Scheduling Service</title><link>http://www.codeplex.com/aspnetSuite/WorkItem/View.aspx?WorkItemId=1888</link><description>What do you think of adding a scheduling service to the suite&amp;#63; One that will periodically execute a given task. This would be useful if, say, at midnight you want to blast a bunch of e-mails to all your customers.&lt;br /&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 18:44:08 GMT</pubDate><guid isPermaLink="false">Created Feature: Scheduling Service 20080730064408P</guid></item><item><title>New Post: Documentation</title><link>http://www.codeplex.com/aspnetSuite/Thread/View.aspx?ThreadId=32580</link><description>&lt;div style="line-height: normal;"&gt;We realize that our documentation is very poor at this point in time. We'll release documentation as soon as its available. That said, what aspects of the suite do people want us to target first?
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 18:26:18 GMT</pubDate><guid isPermaLink="false">New Post: Documentation 20080730062618P</guid></item><item><title>New Post: Documentation</title><link>http://www.codeplex.com/aspnetSuite/Thread/View.aspx?ThreadId=32580</link><description>&lt;div style="line-height: normal;"&gt;We realize that our documentation is very poor at this point in time. We'll release documentation as soon as its available. That said, what aspects of the suite do people want us to target first?
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 18:26:18 GMT</pubDate><guid isPermaLink="false">New Post: Documentation 20080730062618P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/aspnetSuite/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Incorporates everything you need for an enterprise ASP.NET application into a suite of easy-to-use libraries. There&amp;#39;s support for easy localization, e-mail &amp;#40;and e-mail templating with localization&amp;#41;, custom configuration on a per-machine basis, URL rewriting, Windows services with UAC, payment gateway processing, and more.&lt;br /&gt;&lt;br /&gt;Pick and choose what you want in your site. Utilize all the features or just a few - it&amp;#39;s as extensible as you need it to be.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Homepage&lt;/b&gt;&lt;br /&gt;Please visit &lt;a href="http://www.hoytsoft.org/suite.aspx" class="externalLink"&gt;http://www.hoytsoft.org/suite.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; for more information about this project and for details about some of the other included libraries.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;License&lt;/b&gt;&lt;br /&gt;The suite is actually distributed under the CPOL: &lt;a href="http://www.codeproject.com/info/cpol10.aspx" class="externalLink"&gt;http://www.codeproject.com/info/cpol10.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. There wasn't an option on CodePlex for this license, so I chose the next best thing. Please refer to the license that comes with the suite for more information.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Participation&lt;/b&gt;&lt;br /&gt;Please e-mail questions@hoytsoft.org to participate.&lt;br /&gt; &lt;br /&gt;&lt;i&gt;We need help with documentation! If you are willing to assist, please let us know!&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Updates&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;July 29, 2008&lt;/i&gt;: Added enterprise example to baseline v1.0.0 download. This brings the other examples together and shows how to integrate Windows services with a SQL Server 2005 database and ASP.NET website.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 05:32:26 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20080730053226A</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/aspnetSuite/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Incorporates everything you need for an enterprise ASP.NET application into a suite of easy-to-use libraries. There&amp;#39;s support for easy localization, e-mail &amp;#40;and e-mail templating with localization&amp;#41;, custom configuration on a per-machine basis, URL rewriting, Windows services with UAC, payment gateway processing, and more.&lt;br /&gt;&lt;br /&gt;Pick and choose what you want in your site. Utilize all the features or just a few - it&amp;#39;s as extensible as you need it to be.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Homepage&lt;/b&gt;&lt;br /&gt;Please visit &lt;a href="http://www.hoytsoft.org/suite.aspx" class="externalLink"&gt;http://www.hoytsoft.org/suite.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; for more information about this project and for details about some of the other included libraries.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;License&lt;/b&gt;&lt;br /&gt;The suite is actually distributed under the CPOL: &lt;a href="http://www.codeproject.com/info/cpol10.aspx" class="externalLink"&gt;http://www.codeproject.com/info/cpol10.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. There wasn't an option on CodePlex for this license, so I chose the next best thing. Please refer to the license that comes with the suite for more information.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Participation&lt;/b&gt;&lt;br /&gt;Please e-mail questions@hoytsoft.org to participate.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Updates&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;July 29, 2008&lt;/i&gt;: Added enterprise example to baseline v1.0.0 download. This brings the other examples together and shows how to integrate Windows services with a SQL Server 2005 database and ASP.NET website.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>davidhoyt</author><pubDate>Wed, 30 Jul 2008 05:27:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20080730052717A</guid></item><item><title>Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Wed, 30 Jul 2008 05:20:55 GMT</pubDate><guid isPermaLink="false">Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080730052055A</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Wed, 30 Jul 2008 05:20:55 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080730052055A</guid></item><item><title>Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Mon, 28 Jul 2008 07:31:24 GMT</pubDate><guid isPermaLink="false">Released: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080728073124A</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source, binaries, and examples.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Mon, 28 Jul 2008 07:31:24 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080728073124A</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source and binaries.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Mon, 28 Jul 2008 07:31:06 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080728073106A</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source and binaries.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Mon, 28 Jul 2008 07:30:51 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080728073051A</guid></item><item><title>Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008)</title><link>http://www.codeplex.com/aspnetSuite/Release/ProjectReleases.aspx?ReleaseId=15734</link><description>&lt;div&gt;
Complete baseline including the Windows service library, UAC library, configuration library, credit card (payment) gateway library, and web library. &lt;br&gt;&lt;a href="http://www.hoytsoft.org/suite.aspx"&gt;http://www.hoytsoft.org/suite.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;i&gt;Includes source and binaries.&lt;/i&gt;&lt;br&gt;
&lt;/div&gt;</description><author></author><pubDate>Mon, 28 Jul 2008 07:26:39 GMT</pubDate><guid isPermaLink="false">Updated Release: Enterprise ASP.NET Suite, Baseline v1.0.0 (Jul 28, 2008) 20080728072639A</guid></item></channel></rss>