ALTER PROCEDURE [dbo].[aspx_Products_GetRecordCount]

AS

BEGIN

  SET NOCOUNT ON;

 

  SELECT COUNT(*) AS RecordCount FROM [dbo].[Products]

END