Posted on: 3/23/2015 2:47:00 PM | Views : 615

Hello friends,
    Here is my stored procedure when i use this in my code its returns error that
"Procedure or function 'GetLoginDetails' expects parameter '@UserName', which was not supplied."
USE [asp.netlearn] GO /****** Object:  StoredProcedure [dbo].[GetLoginDetails]    Script Date: 03/23/2015 19:18:23 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author:        <Author,,Name> -- Create date: <Create Date,,> -- Description:    <Description,,> -- ============================================= ALTER PROCEDURE [dbo].[GetLoginDetails]     -- Add the parameters for the stored procedure here           @UserName nvarchar(10),      @Password nvarcha ...

Go to the complete details ...