Question : Need to return  " "

if this
   SELECT AboutME FROM tbl_Profile
   WHERE  UserID = @sUserId
returns null then I would like to return " "
a space textbox.

ALTER PROCEDURE [dbo].[sprGetAboutMeName]
(
   @sUserId nvarchar(50)
   
)
AS
BEGIN

   -- Unique Columns to check whether already exists
   SELECT AboutME FROM tbl_Profile
   WHERE  UserID = @sUserId
RETURN
END

Answer : Need to return  " "

Yes, thats what is seems and the expert-exchange link i posted earlier seems to confirm that.
However, i have noticed that on my machine on IE8
1) when i click on the maximize button, this code works
2) when i resize from left side, this code works
3) when i resize from right side, this code does not works
Random Solutions  
 
programming4us programming4us