Caching multiple responses for a single webform Part 120

Published on July 3, 2017

Text version of the video

Slides

All ASP .NET Text Articles

All ASP .NET Slides

All Dot Net and SQL Server Tutorials in English

All Dot Net and SQL Server Tutorials in Arabic

In this video we will discuss about, caching multiple responses for a single webform. Please watch Part -119 from ASP.NET video tutorial, before proceeding with this video.

First create a stored procedure to get products from “tblProducts” table by product name. This procedure returns “ALL Products”, if “All” is supplied as the product name, else, only the product whose name matches with the parameter “@ProductName” is returned.
Create Procedure spGetProductByName
@ProductName nvarchar(50)
as
Begin
if(@ProductName = ‘All’)
Begin
Select Id, Name, Description
from tblProducts
End
Else
Begin
Select Id, Name, Description
from tblProducts
where Name = @ProductName
End
End

Enjoyed this video?
"No Thanks. Please Close This Box!"