Advertisement
Ruslan_Rayanov

block_land_customlist_filter_get

Dec 18th, 2024
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.44 KB | None | 0 0
  1. CREATE PROCEDURE [dbo].[block_land_customlist_filter_get]
  2.     @code nvarchar(128),
  3.     @itemID nvarchar(256),
  4.     @parameters ExtendedDictionaryParameter readonly,  -- langID, username...
  5.     @res nvarchar(max) output
  6. AS
  7. BEGIN
  8.     declare @url nvarchar(max) = (select value2 from @parameters where [key]='itemID')  
  9.     set @res = '<div class="as-form" data-code="customListFilter" data-itemID="'+isnull(@url, '')+'" style="min-height: 150px;"></div>'
  10. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement