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.
Environment.NewLine;
"\r\n";
(char)13 + (char)10;
cmd.CommandText = "CREATE PROCEDURE getProducts " + Environment.NewLine +
"@CatID Int " + Environment.NewLine +
"AS " + Environment.NewLine +
"SELECT ID, Desc, Price, Stock " +
"FROM NWA.dbo.Products " +
"WHERE ID = @CatID"