Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE PROCEDURE [dbo].[block_land_customlist_filter_get]
- @code nvarchar(128),
- @itemID nvarchar(256),
- @parameters ExtendedDictionaryParameter readonly, -- langID, username...
- @res nvarchar(max) output
- AS
- BEGIN
- declare @url nvarchar(max) = (select value2 from @parameters where [key]='itemID')
- set @res = '<div class="as-form" data-code="customListFilter" data-itemID="'+isnull(@url, '')+'" style="min-height: 150px;"></div>'
- END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement