%-- Written By: Alex Lowe - 7/9/2001 webmaster@asp-grandrapids.net http://www.aspalliance.com/aldotnet Modified By: Alex Lowe - 8/22/2001 Mods: *Bug: Code in Pmaker function was missing a comma - FIXED *Bug: Some stored procedures caused app to bomb out - FIXED *Feature: Users can now specify seperate connection string for code and database *Feature: Stored procedures are now sorted alphabetically *Bug: GlobalDBConnection was mispelled in Page_Load *Bug: @objName was replaced with @objname - Systems using binary sort rejected @objName because binary sort machines are case sensitive Thanks to Rob Meronek (http://www.SkateParkOfTampa.com) for educating me on this one!!! Modified By: Alex Lowe - 11/25/2001 Mods: *Bug: Input textboxes were generated for Output parameters - Added check *Bug: Added Dave Wanta's (http://www.123aspx.com) regex fix for parsing *Bug: Added Steve Smith's (http://aspsmith.com) comma parsing fix *Bug: Addes support for stored procs generated by SQL Server's Stored Procedure wizard *Feature: Added default value support for parameters --%> <%@ Page Description="SQL Server DAL Helper"%> <%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.CodeDom.Compiler" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.SqlClient" %>
|
|