Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE @Status Varchar(50)
IF EXISTS (select * from whlink.dbo.rmdswh.orders_table)
BEGIN
SET @Status = "Server Is Up"
END
ELSE
BEGIN
SET @Status = "Server Is Down"
END
...Blah...blah...blah...