<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>tailspinspyworks Discussions Rss Feed</title><link>http://tailspinspyworks.codeplex.com/Thread/List.aspx</link><description>tailspinspyworks Discussions Rss Description</description><item><title>New Post: where can I find VB version of TailspinSpyworks?</title><link>http://tailspinspyworks.codeplex.com/discussions/397129</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello dolly11,&lt;/p&gt;
&lt;p&gt;You can find it in Patches under Source Code tab.&lt;/p&gt;
&lt;p&gt;Ur welcome.&lt;/p&gt;&lt;/div&gt;</description><author>basba</author><pubDate>Fri, 28 Sep 2012 09:25:52 GMT</pubDate><guid isPermaLink="false">New Post: where can I find VB version of TailspinSpyworks? 20120928092552A</guid></item><item><title>New Post: where can I find VB version of TailspinSpyworks?</title><link>http://tailspinspyworks.codeplex.com/discussions/397129</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Please someone tell me where can I find vb version of the TS?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>dolly11</author><pubDate>Thu, 27 Sep 2012 10:38:44 GMT</pubDate><guid isPermaLink="false">New Post: where can I find VB version of TailspinSpyworks? 20120927103844A</guid></item><item><title>New Post: Tailspin Spy throws exception</title><link>http://tailspinspyworks.codeplex.com/discussions/392616</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Nothing works and language using describe the steps is really... you know what... Not everyone is able to teach. At least test your code before &amp;quot;selling&amp;quot; it.&lt;/p&gt;
&lt;p&gt;Bad reputation from the very first visit...&lt;/p&gt;
&lt;p&gt;I found nice course for the beginners -&amp;nbsp;&lt;a href="http://learnasp4.com/"&gt;http://learnasp4.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Art.&lt;/p&gt;
&lt;/div&gt;</description><author>Art123</author><pubDate>Wed, 22 Aug 2012 14:17:14 GMT</pubDate><guid isPermaLink="false">New Post: Tailspin Spy throws exception 20120822021714P</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Ok Max,try this&lt;/p&gt;
&lt;p&gt;&lt;span style="color:blue"&gt;using&lt;/span&gt; System;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Collections.Generic;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Linq;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Web;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Web.UI;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Web.UI.WebControls;&lt;br&gt;
&lt;span style="color:blue"&gt;using&lt;/span&gt; System.Diagnostics;&lt;br&gt;
&lt;br&gt;
&lt;span style="color:blue"&gt;namespace&lt;/span&gt; JumpStitch&lt;br&gt;
{&lt;br&gt;
&lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;partial&lt;/span&gt; &lt;span style="color:blue"&gt;
class&lt;/span&gt; AddToCart : System.Web.UI.Page&lt;br&gt;
{&lt;br&gt;
&lt;span style="color:blue"&gt;protected&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; Page_Load(&lt;span style="color:blue"&gt;object&lt;/span&gt; sender, EventArgs e)&lt;br&gt;
{&lt;br&gt;
&lt;span style="color:blue"&gt;if&lt;/span&gt; (Request.Parms[&amp;quot;productId&amp;quot;] != null)&lt;br&gt;
{&lt;br&gt;
JumpStitch.Classes.MyShoppingCart usersShoppingCart = &lt;span style="color:blue"&gt;new&lt;/span&gt; JumpStitch.Classes.MyShoppingCart();&lt;br&gt;
String cartId = usersShoppingCart.GetShoppingCartId();&lt;br&gt;
usersShoppingCart.AddItem(cartId, Int32.Parse(Request.Parms[&amp;quot;productId&amp;quot;]) , 1);&lt;br&gt;
}&lt;br&gt;
&lt;span style="color:blue"&gt;else&lt;/span&gt;&lt;br&gt;
{&lt;br&gt;
Debug.Fail(&lt;span style="color:#a31515"&gt;&amp;quot;ERROR: We should never get to AddToCart.aspx without a product Id.&amp;quot;&lt;/span&gt;);&lt;br&gt;
&lt;span style="color:blue"&gt;throw&lt;/span&gt; &lt;span style="color:blue"&gt;new&lt;/span&gt; Exception(&lt;span style="color:#a31515"&gt;&amp;quot;ERROR: It is illegal to load AddToCart.aspx without setting a Product Id.&amp;quot;&lt;/span&gt;);&lt;br&gt;
}&lt;br&gt;
Response.Redirect(&lt;span style="color:#a31515"&gt;&amp;quot;MyShoppingCart.aspx&amp;quot;&lt;/span&gt;);&lt;br&gt;
}&lt;br&gt;
}&lt;br&gt;
}&lt;/p&gt;
&lt;/div&gt;</description><author>basba</author><pubDate>Fri, 03 Aug 2012 07:34:24 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120803073424A</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I've fixed that issue, but, once again, have another. Basically, if I go to a product page (ProductDetails.aspx), and then click "add to cart", it passes to the MyShoppingCart.aspx page, but doesn't display anything in an actual "Shopping Cart", let alone display a table.&lt;/p&gt;
&lt;p&gt;I think it is an issue with the AddToCart.aspx.cs page. Here is the code for it:&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: blue;"&gt;using&lt;/span&gt; System;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Collections.Generic;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Linq;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Web;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Web.UI;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Web.UI.WebControls;
&lt;span style="color: blue;"&gt;using&lt;/span&gt; System.Diagnostics;

&lt;span style="color: blue;"&gt;namespace&lt;/span&gt; JumpStitch
{
    &lt;span style="color: blue;"&gt;public&lt;/span&gt; &lt;span style="color: blue;"&gt;partial&lt;/span&gt; &lt;span style="color: blue;"&gt;class&lt;/span&gt; AddToCart : System.Web.UI.Page
    {
        &lt;span style="color: blue;"&gt;protected&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; Page_Load(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, EventArgs e)
        {
            &lt;span style="color: blue;"&gt;string&lt;/span&gt; rawId = Request.QueryString[&lt;span style="color: #a31515;"&gt;"ProductID"&lt;/span&gt;];
            &lt;span style="color: blue;"&gt;int&lt;/span&gt; productId;
            &lt;span style="color: blue;"&gt;if&lt;/span&gt; (!String.IsNullOrEmpty(rawId) &amp;amp;&amp;amp; Int32.TryParse(rawId, &lt;span style="color: blue;"&gt;out&lt;/span&gt; productId))
            {
                JumpStitch.Classes.MyShoppingCart usersShoppingCart = &lt;span style="color: blue;"&gt;new&lt;/span&gt; JumpStitch.Classes.MyShoppingCart();
                String cartId = usersShoppingCart.GetShoppingCartId();
                usersShoppingCart.AddItem(cartId, productId, 1);
            }
            &lt;span style="color: blue;"&gt;else&lt;/span&gt;
            {
                Debug.Fail(&lt;span style="color: #a31515;"&gt;"ERROR: We should never get to AddToCart.aspx without a product Id."&lt;/span&gt;);
                &lt;span style="color: blue;"&gt;throw&lt;/span&gt; &lt;span style="color: blue;"&gt;new&lt;/span&gt; Exception(&lt;span style="color: #a31515;"&gt;"ERROR: It is illegal to load AddToCart.aspx without setting a Product Id."&lt;/span&gt;);
            }
            Response.Redirect(&lt;span style="color: #a31515;"&gt;"MyShoppingCart.aspx"&lt;/span&gt;);
        }
    }
}

&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>MaxLHarr</author><pubDate>Wed, 01 Aug 2012 02:38:51 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120801023851A</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;hello again Max, I'm kinda a little busy fixing my car, sorry for the belated reply. I have made a VB version of Joe's C#, so if you liked you can download my version which is fully functional, many have used it. But it is good that you fixed the problem, I will need to look at your class code and check it out before I can give you my opinion regarding the new error codes.&lt;/p&gt;&lt;/div&gt;</description><author>basba</author><pubDate>Mon, 30 Jul 2012 17:18:47 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120730051847P</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;That did indeed fix the problem, but now the GetShoppingCartId and AddItem bits are flashing the same error.&lt;/p&gt;&lt;/div&gt;</description><author>MaxLHarr</author><pubDate>Fri, 27 Jul 2012 20:20:32 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120727082032P</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello Max, it should not be a problem unless you kept the inheritence path as is in the .aspx file, it needs the correct path for the class file .cs, I am sure that you can see that it couldn't find the class. check it and let me know.  The code you presented seems fine.&lt;/p&gt;&lt;/div&gt;</description><author>basba</author><pubDate>Wed, 25 Jul 2012 12:04:06 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120725120406P</guid></item><item><title>New Post: Issue with AddToCart.aspx.cs</title><link>http://tailspinspyworks.codeplex.com/discussions/387987</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I am working on a project that incorporates elements of the Tailspin Spyworks application into it. For the most part, I am following the tutorial exactly. The only things I've changed are certain file paths (&amp;quot;/products/store/addtocart.aspx&amp;quot; instead of &amp;quot;addtocart.aspx&amp;quot;),
 the project name, and the master page.&lt;/p&gt;
&lt;p&gt;In the page &amp;quot;AddToCart.aspx.cs&amp;quot;, when I entered in the following code, it gave me the error:&lt;/p&gt;
&lt;p&gt;&amp;quot;The type or namespace name &amp;quot;MyShoppingCart&amp;quot; could not be found (Are you missing a using directive or an assembly reference?)&amp;quot;&lt;/p&gt;
&lt;p&gt;I am on the newer side of C# programming, but have done web development for a number of years. Any help would be greatly appreciated.&lt;/p&gt;
&lt;p&gt;This is the entire code:&lt;/p&gt;
&lt;div style="background-color:white; color:black"&gt;
&lt;pre&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Diagnostics;

namespace JumpStitch
{
    public partial class AddToCart : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string rawId = Request.QueryString[&amp;quot;ProductID&amp;quot;];
            int productId;
            if (!String.IsNullOrEmpty(rawId) &amp;amp;&amp;amp; Int32.TryParse(rawId, out productId))
            {
                &lt;span style="color:#ff0000"&gt;MyShoppingCart&lt;/span&gt; usersShoppingCart = new &lt;span style="color:#ff0000"&gt;MyShoppingCart&lt;/span&gt;();
                String cartId = usersShoppingCart.GetShoppingCartId();
                usersShoppingCart.AddItem(cartId, productId, 1);
            }
            else
            {
                Debug.Fail(&amp;quot;ERROR : We should never get to AddToCart.aspx without a ProductId.&amp;quot;);
                throw new Exception(&amp;quot;ERROR : It is illegal to load AddToCart.aspx without setting a ProductId.&amp;quot;);
            }
            Response.Redirect(&amp;quot;/products/store/MyShoppingCart.aspx&amp;quot;);
        }
    }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>MaxLHarr</author><pubDate>Tue, 24 Jul 2012 19:20:39 GMT</pubDate><guid isPermaLink="false">New Post: Issue with AddToCart.aspx.cs 20120724072039P</guid></item><item><title>New Post: Metadata resource</title><link>http://tailspinspyworks.codeplex.com/discussions/362472</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks Very much I have done it now but I am too tired to continue.&amp;nbsp; So Until tomorrow!!!&lt;/p&gt;&lt;/div&gt;</description><author>Regent7</author><pubDate>Tue, 10 Jul 2012 02:11:44 GMT</pubDate><guid isPermaLink="false">New Post: Metadata resource 20120710021144A</guid></item><item><title>New Post: Tailspin Spy Works won't run</title><link>http://tailspinspyworks.codeplex.com/discussions/361510</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Did you get any reply.&amp;nbsp; I have tried other apps and they work so whats going on here.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My connection string for the entity data model doesn't work have you got any ideas?&lt;/p&gt;&lt;/div&gt;</description><author>Regent7</author><pubDate>Tue, 10 Jul 2012 01:54:07 GMT</pubDate><guid isPermaLink="false">New Post: Tailspin Spy Works won't run 20120710015407A</guid></item><item><title>New Post: Metadata resource</title><link>http://tailspinspyworks.codeplex.com/discussions/362472</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I am a novice but like to take on challenges, so you might hear a lot from me as I have started this rather complex task of trying to build this app.&lt;/p&gt;
&lt;p&gt;I am following the tutorial and I am stuck on the above.&amp;nbsp; I get a message that says.&lt;/p&gt;
&lt;p&gt;The metadata in the connection string could not be loaded, whats wrong with my connection string? Its suggesting I rebuild, I have but I still get the same problem.&amp;nbsp; Any help is appreciated. Thanks&lt;/p&gt;
&lt;/div&gt;</description><author>Regent7</author><pubDate>Mon, 09 Jul 2012 00:36:21 GMT</pubDate><guid isPermaLink="false">New Post: Metadata resource 20120709123621A</guid></item><item><title>New Post: Tailspin Spy Works won't run</title><link>http://tailspinspyworks.codeplex.com/discussions/361510</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi I am an experienced PHP developer and am trying to learn asp.net and stumbled over the TailspinSpyworks tutorial/application.&amp;nbsp; I have downloaded the app and opened it in VSWD2010 and debugged locally and the site runs but if I click into a category
 and then click to view a products details, it throws an error, and I get an error message on the &amp;quot;Error.aspx&amp;quot; page that gives a fairly standard error message on line 15 (Label_ErrorMessage.Text = Request[&amp;quot;InnerErr&amp;quot;].ToString();) which I'm not quite sure what
 it means! After I click contine debugging the Error.aspx in the browser shows the Error page with querystring:&lt;/p&gt;
&lt;p&gt;http://localhost:5080/Error.aspx?InnerErr=Object%20reference%20not%20set%20to%20an%20instance%20of%20an%20object.&amp;amp;Err=Exception%20of%20type%20%27System.Web.HttpUnhandledException%27%20was%20thrown.&lt;/p&gt;
&lt;p&gt;And the page content shows the querystring values of:&lt;/p&gt;
&lt;p&gt;&lt;span id="MainContent_Label_ErrorFrom"&gt;Exception of type 'System.Web.HttpUnhandledException' was thrown.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span id="MainContent_Label_ErrorMessage"&gt;Object reference not set to an instance of an object.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Surely if this is being used as a learning aid it should run, in VS without falling over when I try to view a product? If someone could let me know what is causing this error and the fix for it would be appreciated as at the momet, seems like a pretty useless
 learning aid.&lt;/p&gt;
&lt;/div&gt;</description><author>mattlynham</author><pubDate>Sun, 01 Jul 2012 00:57:49 GMT</pubDate><guid isPermaLink="false">New Post: Tailspin Spy Works won't run 20120701125749A</guid></item><item><title>New Post: The sql script for Commerce db</title><link>http://tailspinspyworks.codeplex.com/discussions/262759</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;You are welcome&lt;/p&gt;&lt;/div&gt;</description><author>Primillo</author><pubDate>Thu, 24 May 2012 02:31:02 GMT</pubDate><guid isPermaLink="false">New Post: The sql script for Commerce db 20120524023102A</guid></item><item><title>New Post: The sql script for Commerce db</title><link>http://tailspinspyworks.codeplex.com/discussions/262759</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear Primillo,&lt;/p&gt;
&lt;p&gt;This very helpful to me, thank you!&lt;/p&gt;
&lt;p&gt;Have a good day!&lt;/p&gt;
&lt;p&gt;Shun.&lt;/p&gt;&lt;/div&gt;</description><author>vaysaovaysao</author><pubDate>Thu, 24 May 2012 01:16:14 GMT</pubDate><guid isPermaLink="false">New Post: The sql script for Commerce db 20120524011614A</guid></item><item><title>New Post: Need intrepretation of "keep the translation credit intact"</title><link>http://tailspinspyworks.codeplex.com/discussions/356081</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am a contributor and NOT someone who works for Microsoft.  I made the VB.Net version of this project a while back, so in the ReadMeFirst text file I only ask for people who use my version to give me a little credit and mention that in their project, that's all.  In answering your earlier question, I do not deny that I had had encountered errors while going thru the C# version, but that was a great experience. So if there's anything I can help with regarding my version then let me know, and I will try to answer your mail as soon as possible. How I did it?, I just did the C# first and then when I learned the structure I simply translated it to VB.&lt;/p&gt;&lt;/div&gt;</description><author>basba</author><pubDate>Thu, 17 May 2012 09:01:02 GMT</pubDate><guid isPermaLink="false">New Post: Need intrepretation of "keep the translation credit intact" 20120517090102A</guid></item><item><title>New Post: Need intrepretation of "keep the translation credit intact"</title><link>http://tailspinspyworks.codeplex.com/discussions/356081</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span style="color:#0000ff"&gt;Hello Basba.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff"&gt;In your VB version file ReadMeFirst.txt, you have a request to &amp;quot;keep the translation credit intact&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff"&gt;I'm not sure of what you mean by that.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff"&gt;Are you requesting to keep the credits at the bottom of the pages?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff"&gt;Thanks,&lt;/span&gt;&lt;br&gt;
&lt;span style="color:#0000ff"&gt;Tony&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>TGirgenti</author><pubDate>Wed, 16 May 2012 21:42:40 GMT</pubDate><guid isPermaLink="false">New Post: Need intrepretation of "keep the translation credit intact" 20120516094240P</guid></item><item><title>New Post: Bug Fix for VB version</title><link>http://tailspinspyworks.codeplex.com/discussions/248422</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Hello Joe.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Can you tell me which .aspx file this gets changed in?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Thanks,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #0000ff;"&gt;Tony&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>TGirgenti</author><pubDate>Wed, 16 May 2012 17:06:47 GMT</pubDate><guid isPermaLink="false">New Post: Bug Fix for VB version 20120516050647P</guid></item><item><title>New Post: Real Incompetence-Bad Code- do not waste your time with this</title><link>http://tailspinspyworks.codeplex.com/discussions/286574</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Hello Basba.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Did you create a VB.NET version of this project?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff;"&gt;If so, i'd like to know how you did it and if your VB.NET version is available for others to use.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff;"&gt;Thanks,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #0000ff;"&gt;Tony&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>TGirgenti</author><pubDate>Wed, 16 May 2012 13:08:29 GMT</pubDate><guid isPermaLink="false">New Post: Real Incompetence-Bad Code- do not waste your time with this 20120516010829P</guid></item><item><title>New Post:  Parser Error Message: The directive 'master' is unknown.</title><link>http://tailspinspyworks.codeplex.com/discussions/354776</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hey James; well some of us are lucky enough in landing a job. Congrats... Yup! changing to small cap wouldn't resolve the problem.  Try and make sure that your Site.master file is present at the target directory.  I don't think its finding it that's why you are getting that error.  I would highly recommend for all newbies to watch the vids made by Joe Stamger about the project and to copy the whole folder content to your VS2010 project folder and open the project as is first.  Be sure to check and see if the commerce.mdf is not "Blocked", if so then unblock it.  Good luck.&lt;/p&gt;&lt;/div&gt;</description><author>basba</author><pubDate>Tue, 08 May 2012 15:10:26 GMT</pubDate><guid isPermaLink="false">New Post:  Parser Error Message: The directive 'master' is unknown. 20120508031026P</guid></item></channel></rss>