jgalt

Stories submitted by jgalt

RegEx to match a string that DOES NOT contain angle brackets(beecy.net)

submitted by jgaltjgalt(195) 2 years, 11 months ago

A simple RegEx to match a string that DOES NOT contain angle brackets. Useful for preventing script tags from being injected into web forms. read more...

add a comment |category: |Views: 19

tags: another

3 Reasons Not to Use Relative Dates in Web Pages(beecy.net)

submitted by jgaltjgalt(195) 2 years, 11 months ago

Reasons to avoid relative dates in web pages. read more...

add a comment |category: |Views: 10

tags: another

Convert a Generic List to a DataTable Using Reflection(beecy.net)

submitted by jgaltjgalt(195) 3 years ago

How to convert a generic List<> to a DataTable using reflection. Works for any List<> that contains elements whose fields and properties are mappable to sql data types. read more...

add a comment |category: |Views: 166

tags: another

Making XmlDataSource Work with RSS 1.0, RSS 2.0 and Atom Feeds(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

All the major pieces needed to put together a ASP.Net page or control that can consume pretty much any valid feed. read more...

add a comment |category: |Views: 22

tags: another

Fixing Data series for the ... chart can not have a different number(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

Fixing "Data series for the ... chart can not have a different number of data points" problem when using DataBindCrossTab() method read more...

add a comment |category: |Views: 5

tags: another

Page.Form.Attributes.Add onsubmit AJAX Problem(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

How to correct a problem where registering a JavaScript handler for the onsubmit event kills AJAX postbacks. read more...

add a comment |category: |Views: 17

tags: another

Script SQL Server 2005 and 2008 Diagrams(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

This is a slightly tweaked version of the excellent script written by Craig Dunn over at conceptdevelopment.net. What is does is create a couple SP's and a function that allow you script your SQL Server diagrams to move them between databases. read more...

add a comment |category: |Views: 7

tags: another

Find and List Duplicate Rows and Values in SQL Server(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

Two examples. The first shows how to find duplicate values. The second shows how to list all rows containing duplicate values. read more...

add a comment |category: |Views: 1

tags: another

NTEXT vs NVARCHAR(MAX) in SQL Server 2005 and 2008(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

Use NVARCHAR(MAX) instead of NTEXT. read more...

add a comment |category: |Views: 34

tags: another

How to Fix "The Project file '' has been renamed or is no longer in th(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

How to resolve the Project file has been renamed or is no longer in the solution problem. read more...

add a comment |category: |Views: 44

tags: another

Using SVN with Code Generators(beecy.net)

submitted by jgaltjgalt(195) 3 years, 1 month ago

How to get SVN to play nice with code generators like LLBLGen Pro. read more...

add a comment |category: |Views: 9

tags: another

Group SQL Server Data by Date/Time with a Temp Table(beecy.net)

submitted by jgaltjgalt(195) 3 years, 4 months ago

How to use a temporary table to group SQL Server data by date/time. read more...

add a comment |category: |Views: 2

tags: another

Group SQL Server Data by Date/Time with DATEDIFF and DATEADD(beecy.net)

submitted by jgaltjgalt(195) 3 years, 4 months ago

How to group SQL Server data by date/time using DATEDIFF amd DATEADD. read more...

add a comment |category: |Views: 7

tags: another

Grouping SQL Server Data by Date/Time with DATEPART or DATENAME(beecy.net)

submitted by jgaltjgalt(195) 3 years, 4 months ago

How to group data in SQL Server by date/time using the DATEPART and/or DATENAME functions. read more...

add a comment |category: |Views: 3

tags: another

How to encrypt a SQL Server stored procedure(beecy.net)

submitted by jgaltjgalt(195) 3 years, 4 months ago

How to encrypt a stored procedure in SQL Server 2005/2008. read more...

add a comment |category: |Views: 21

tags: another

Convert a Byte Array to a String in C#(beecy.net)

submitted by jgaltjgalt(195) 3 years, 4 months ago

How to convert a byte array to a string in C#. read more...

add a comment |category: |Views: 35

tags: another