Show all
Hide all
Example
DECLARE @LinkGuid uniqueidentifier;
EXEC SoftadminSnippet.DeclareLink
@Action = N'Book',
@LinkGuidOut = @LinkGuid OUTPUT;
SELECT SoftadminSnippet.PostbackButton(@LinkGuid, N'Book room', N'17') AS Html;
See also
Type:
Stored procedure
Area of use:
API
Parameters:
@Action
optional
nvarchar
Used by SoftadminSnippet.PostbackLink and SoftadminSnippet.PostbackButton. Ignored by the other functions.
@LinkGuidOut
mandatory
uniqueidentifier
OUTPUT parameter. The value can be reused for all function calls using the same @Action.