Tag: Design + Development

How to install iOS and Android SDKs for Visual Studio 2013 Premium & Ultimate

I was going to install Visual Studio Community 2013, but it asked me to uninstall Visual […]

CSS Tricks Quickie – Multiple Border Styles and Radius

Did you know that you can set multiple border styles for the sides of divs and […]

Are you a Brogrammer or a Programmer?

So I was listening to Windows Weekly and heard Mary Joe Foley, from Cnet, mention the […]

Add AutoNumber to GridView showing the RowNumber | Quickie

The code below will add a column showing an incremental number near each row, which ultimately […]

Solution | Unable to write output file ‘…pdb’; unspecified error

During this weekend, I started having a problem when building a solution in Visual Studio. It […]

Get data from an SQLDataSource to a DataTable and Bind Grid

This week, I needed to bind a gridview to and SQLDataSource. The only problem is that […]

ASP.Net 4.0 Validate Request

When creating a CMS sometimes you need to allow certain tags pass through the ASP.Net Validation. […]

Implement “Master Pages” in Java

Found a good blog post on how you can emulate the use of ASP.Net Master Pages […]

SQL Server 2005 | Add days, months and years to GetDate()

To get the current date in Sql Server queries and stored procedures, you use the GetDate() […]

SQL Server | Convert Varchar to UniqueIdentifier

There are 2 ways to Convert a string to a UniqueIdentifier (GUID) in SQL Server: SELECT CAST(‘449141d9-86c9-449d-be2c-1f171b4f4567’ as UNIQUEIDENTIFIER) SELECT CONVERT(UNIQUEIDENTIFIER, […]