تم عمل ذلك في مشروع المنتدي
في صفحة الموضوع في حدث الباج لود
كنا نزود عدد المشاهدات للموضوع 
افتح مشروع المنتدي ستجد كود  اظهار المشاهدات ثم زيادتها 
 string   sqlWatched = fun.fireSQL(" select thread_watched from forum_threads   where thread_id=''" + Request.QueryString["id"].ToString() + "''");
            int x = 0;
            int.TryParse(sqlWatched, out x);
            int count = x + 1;
            fun.fireSQL("update forum_threads set thread_watched =''" + count + "''");