Actually that is exactly the case. The AppConfig value will not get curtailed after you entered the data yet until the cache is reset.
You can expand the Config Value with this set of queries:
1)
Alter Table AppConfig Alter Column ConfigValue Nvarchar(2000)
2)
drop proc [dbo].[aspdnsf_updAppconfig]
3)
create proc dbo.aspdnsf_updAppconfig
@AppConfigID int,
@Description ntext = null,
@ConfigValue nvarchar(2000) = null,
@GroupName nvarchar(100) = null,
@SuperOnly tinyint = null,
@StoreID int = null,
@ValueType nvarchar(100) = null,
@AllowableValues nvarchar(max) = null
AS
SET NOCOUNT ON
UPDATE dbo.Appconfig
SET
Description = COALESCE(@Description, Description),
ConfigValue = COALESCE(@ConfigValue, ConfigValue),
GroupName = COALESCE(@GroupName, GroupName),
SuperOnly = COALESCE(@SuperOnly, SuperOnly),
StoreID = COALESCE(@StoreID, StoreID),
ValueType = COALESCE(@ValueType, ValueType),
AllowableValues = COALESCE(@AllowableValues, AllowableValues)
WHERE AppConfigID = @AppConfigID
Erik Sutton
AspDotNetStorefront Technical Support