there's no use in giving ORDER BY inside view as it will not guarantee order of returning resultset. For that you need to give order by in select statement which retrives details from the view like
SELECT * FROM wwOverdueVideos ORDER BY Fname, Lname ASC
see
http://visakhm.blogspot.com/2010/01/behaviour-of-order-by-inside-view.html
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/