SoftadminSnippet.DeclareLink

Type: Stored procedure

Example

DECLARE @LinkGuid uniqueidentifier;
EXEC SoftadminSnippet.DeclareLink
	@Action = N'Book',
	@LinkGuidOut = @LinkGuid OUTPUT;

SELECT SoftadminSnippet.PostbackButton(@LinkGuid, N'Book room', N'17', NULL) AS Html;

See also

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.