Click here to Skip to main content
15,880,956 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have to integrate ebay with my asp.net application.This can be done using ebay .net SDK.Question is how can i get the number of views of items that iam posted.Please help!!
Posted
Updated 1-Aug-14 1:01am
v2

1 solution

use

C#
Application.Lock();
Application["NoOfVisitors"] = (int)Application["NoOfVisitors"] + 1;
Application.UnLock();


in Global.asax page
 
Share this answer
 
Comments
Namith Krishnan E 1-Aug-14 8:28am    
i dont want counter in my web application.Its the count of visitors viewing item in ebay

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900