ASP.NET, Azure »

[30 Apr 2010 | 0 Comments]

If you get:Microsoft.WindowsAzure.StorageClient.StorageClientException: One of the request inputs is out of range. In my endpoint I labeled my AccountName as "JoshDevStorage" but the AccountName only allows all lowercase letters so after changing it to "joshdevstorage" it worked.   :)

Azure »

[26 Apr 2010 | 0 Comments]

As I mentioned previously I have began working with Microsoft Azure's Cloud Solution. One of the tools I found to add to my arsenal for Azure is named TableXplorer which you can download from here:  http://clumsyleaf.com/products/tablexplorer/ It's a great free tool to use when working with T... [More]

C# Development »

[6 Apr 2010 | 0 Comments]

I am now working to place one of our newest features using Microsoft Azure. When I was attempting to run the "devfabric" which is a simulation of the cloud within your own sandbox. My solution threw me a compile error stating "Configuration system failed to initialize".   My Problem: In my A... [More]

TechArticle »

[5 Mar 2010 | 0 Comments]

Ack! Have you ever selected your folder and said "Exclude from Project" and then if you wanted to add that folder back into your solution, you couldn't. Using "Add existing item" would show you the file dialog and when you select your folder it drills down into that folder. GRR!.     ... [More]

ASP.NET »

[1 Mar 2010 | 1 Comments]

<Taken from Rick Strahl's Web log> at: http://www.west-wind.com/weblog/posts/132081.aspx ASP.Net includes quite a plethora of properties to retrieve path information about the current request, control and application. There's a ton of information available about paths on the Request ob... [More]

ASP.NET »

[1 Mar 2010 | 0 Comments]

As a resource for myself I found this blog entry and wanted to retain the information as a reference list. Thanks to SheoNarayan for this post. Which you can find here: http://www.dotnetfunda.com/articles/article79.aspx   Reposting in case that site dies: System.Web.HttpRequ... [More]

»

[23 Oct 2009 | 0 Comments]

Okay quick blog for today. Not my best, but I have been working with SQL's native HierarchyID type and didn't want to see the regular Hex of 0X5B6EAD6B, So by adding a simple .ToString() on my Select statement for my table I was able to change it to be "/1/2/13/"   SELECT TOP 1000 [WidgetInst... [More]

ASP.NET »

[1 Oct 2009 | 0 Comments]

The base class includes the field ‘MyUserControl_1, but its type (MyUserControl) is not compatible with the type of control (ASP.MyControl_ascx). [More]

ASP.NET »

[9 Sep 2009 | 0 Comments]

Today I copied over another user control from another project into my current project and the code behind page was giving me an error on the label on the page. The error was :  “Cannot resolve symbol ‘ ’: After a little investigation I found this is being thrown by my ReShar... [More]

CodeResource »

[9 Aug 2009 | 0 Comments]

A computer language is not just a way of getting a computer to perform operations. A computer language is a transport for expressing ideas about methodology. A program must be written for humans to read and for machines to execute. Thus a Software Engineer is not somebody that just knows syntax o... [More]