dyardy

Stories submitted by dyardy

IIS 6 MVC CSS Troubles - Styles not recognized(davidyardy.com)

submitted by dyardydyardy(199) 8 months, 14 days ago

Scenario: I deployed my mvc 3 application to IIS 6 (with NTLM authentication). While using Internet Explorer (IE) everything looked great. When I tested the site with other common browsers Chrome/FireFox/Safari none of the styles specified in the css sheet were used. read more...

add a comment |category: |Views: 3

tags: another

PivotViewer Common Error(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 2 months ago

I have been working with Silverlight PivotViewer control and recently came across problem with the display of the control. I have a solution with multiple projects one of which is a Silverlight application. Everything would compile without any error. read more...

add a comment |category: |Views: 3

tags: another

Silverlight PivotViewer - XAML Exception(davidyardy.com)

submitted by dyardydyardy(199) 1 year, 2 months ago

I have been working with Silverlight PivotViewer control and recently came across problem with the display of the control "Element is already the child / System.Windows.Markup.XamlParseException --> PivotControl Error" read more...

add a comment |category: |Views: 3

tags: another

.NET 4 and new GAC locations(davidyardy.com)

submitted by dyardydyardy(199) 1 year, 2 months ago

.NET 4 has new GAC requirements and instructions read more...

add a comment |category: |Views: 9

tags: another

SharePoint Feature Exists Code(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 3 months ago

Method to iterate through SharePoint SPSite collection to check to see if a feature (featureGuid) exists. If found, method returns true read more...

add a comment |category: |Views: 3

tags: another

Design Guidelines–Classes vs. Interfaces(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 7 months ago

This is 2nd in a series of articles on .NET design practices. This article concentrates on classes and interfaces and how they differ and how/when to implement. read more...

add a comment |category: |Views: 30

tags: another

Canadian Developers - Let's Connect(blog.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 7 months ago

Twitter list and aggregated RSS feed for Canadian developers read more...

add a comment |category: |Views: 2

tags: another

SharePoint– Ghostable and GhostableInLibrary (www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

The Type attribute on a file defined in a SharePoint module have values of Ghostable and GhostableInLibrary. If Type is not defined they are considered UnGhostable. Ok, so do you remember what these are? I tend to always forget and mix up the definitions. read more...

add a comment |category: |Views: 18

tags: another

.NET 4 Design Guidelines– Classes vs. Structures(blog.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

My goal is to cover some .NET 4 Platform features through a series of ‘guideline’ type entries demonstrating some new and existing functionality. In this first entry, I have seen both classes and structures used throughout applications. The following is meant to describe and explain good design considerations. read more...

add a comment |category: |Views: 495

tags: another

Strong Names and Signing Assemblies .NET(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

Digital signatures are used to verify the integrity of data being passed from the originator (the signer) to a recipient (the verifier). The signatures are generated and verified using public key cryptography. The signer of a message has a pair of cryptographic keys: a public key, which everyone in the world knows, and a private key, which is kept secret by the signer. read more...

add a comment |category: |Views: 1

tags: another

ASP.NET 4 Feature - Increase the URL character length plus more(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

In previous versions of ASP.NET, URLs were limited to 260 characters in length (based on the NTFS file-path limit). But in ASP.NET 4.0 developers have the option of increasing or decreasing the length of URLs by using the new maxRequestPathLength and maxQueryStringLength. read more...

add a comment |category: |Views: 2

tags: another

Utilizing SQL Server Templates(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

Within the Template Window create a new folder to store your custom templates, create a new template, paste the above SQL and Save. To use simply click on the template and Ctrl-Shift-M to be prompted for the variables and values. Great stuff. read more...

2 comments |category: |Views: 99

tags: another

Generic(Collection) Usage in the .NET Framework(www.davidyardy.com)

submitted by dyardydyardy(199) 1 year, 8 months ago

Generics provide a way for developers to define subroutines, functions, fields, properties as well as classes, structures, interfaces and even delegates in such a way that the parameters are not of any particular type. In a sense the constructs are defined in a generic approach. The .NET Framework contains the following namespaces:System.Collections, read more...

add a comment |category: |Views: 157

tags: another

Strong Names and Signing Assemblies .NET(blog.davidyardy.com)

submitted by dyardydyardy(199) 2 years, 7 months ago

Digital signatures are used to verify the integrity of data being passed from the originator (the signer) to a recipient (the verifier). The signatures are generated and verified using public key cryptography. Learn about the details about signing assemblies. This post covers the hows and why's. read more...

add a comment |category: |Views: 9

tags: another

Generic(Collection) Usage in the .NET Framework(blog.davidyardy.com)

submitted by dyardydyardy(199) 2 years, 8 months ago

Generics provide a way for developers to define subroutines, functions, fields, properties as well as classes, structures, interfaces and even delegates in such a way that the parameters are not of any particular type. In a sense the constructs are defined in a generic approach. The .NET Framework contains the following namespaces:System.Collections, System.Collections.Generic. The latter mimics very much the features of the former however there are quite a few benefits of using the generic namespace. Learn more here. read more...

add a comment |category: |Views: 10

tags: another

Asp.net UpdatePanel/UpdateProgress Controls and Overlays (Wait Message(blog.davidyardy.com)

submitted by dyardydyardy(199) 2 years, 9 months ago

While a partial page postback is occurring disable all form fields and give the user a pleasant please wait message that can be used consistently across your application(s). We need to create an overlay that works in conjunction with the updatepanel as well as direct from JavaScript. Problem: Design the update progress html and css so that the entire page is overlaid with gray background. This works pretty good until scrolling on the page is involved. When the page is tall enough that the browser scrolls the overlay must by sized dynamically with each post. If you fail to do this, you will end up with odd visual with the overlay only covering a portion of the page. read more...

add a comment |category: |Views: 270

tags: another