Counter Website C#
-
I wanna counter with ASP.net ( C# Coding ) for my website that gives me 1:
Yesterday Visitors
2:Today Visitors
3:Online Visitors
4:Total Visitors
I have seen this sitehttp://www.asp101.com/samples/counter_aspx.asp
but .... I can only have Total Visitors Please Help !!!!!! -
I wanna counter with ASP.net ( C# Coding ) for my website that gives me 1:
Yesterday Visitors
2:Today Visitors
3:Online Visitors
4:Total Visitors
I have seen this sitehttp://www.asp101.com/samples/counter_aspx.asp
but .... I can only have Total Visitors Please Help !!!!!!for Visitors online see this..! http://www.aspdotnetfaq.com/Faq/How-to-show-number-of-online-users-visitors-for-ASP-NET-website.aspx[^]
jojoba2010 wrote:
Yesterday Visitors & Today Visitors
write a logic in the session start event and compare with datetime..! and store it in database..!
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
I wanna counter with ASP.net ( C# Coding ) for my website that gives me 1:
Yesterday Visitors
2:Today Visitors
3:Online Visitors
4:Total Visitors
I have seen this sitehttp://www.asp101.com/samples/counter_aspx.asp
but .... I can only have Total Visitors Please Help !!!!!! -
U have already posted the same question.. please dont cross post... You wont get replies for cross post.... Regards, Tash
-
I dont Know This is Cross Post..! :-O
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
What do you mean
write a logic in the session start event and compare with datetime..!
and store it in database..!But I didnt get my ans Yesterday Visitors Today visitors Online Visitors Total Visitors
-
I dont Know This is Cross Post..! :-O
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
Thats okay.. If u have an answer u can help him out.. Mostly people dont reply for cross posts... anyways opinions vary.. Regards, Tash
Thanks a lottttt How can i do that
write a logic in the session start event and compare with datetime..!
and store it in database..!I wanna :
Yesterday Visitors Today visitors Online Visitors Total Visitors
modified on Tuesday, January 12, 2010 4:52 AM
-
Thanks a lottttt How can i do that
write a logic in the session start event and compare with datetime..!
and store it in database..!I wanna :
Yesterday Visitors Today visitors Online Visitors Total Visitors
modified on Tuesday, January 12, 2010 4:52 AM
Actually a website runs all the time. It doesnt restarts. So you need to calculate Yesterday visitor/ today Visitor manually by checking the DateTime Also Online visitor can be calculated by fixing a timeout and check all the last requests made during this timeout value. :rose:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Windows7 API Code Pack
Simplify Code Using NDepend
Basics of Bing Search API using .NET -
Actually a website runs all the time. It doesnt restarts. So you need to calculate Yesterday visitor/ today Visitor manually by checking the DateTime Also Online visitor can be calculated by fixing a timeout and check all the last requests made during this timeout value. :rose:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Windows7 API Code Pack
Simplify Code Using NDepend
Basics of Bing Search API using .NETThanks anyway but
Can you give me example or code .
I should finish my project for
this Wednesday
.So please give me code or pdf or C# example
.
Step by Step code
.Thanksss:rose::rose: :(( :(( :confused::confused:
-
I wanna counter with ASP.net ( C# Coding ) for my website that gives me 1:
Yesterday Visitors
2:Today Visitors
3:Online Visitors
4:Total Visitors
I have seen this sitehttp://www.asp101.com/samples/counter_aspx.asp
but .... I can only have Total Visitors Please Help !!!!!!create table in database CREATE TABLE [ApplicationCount1] ( [HitID] [bigint] IDENTITY (1, 1) NOT NULL , [AddedDate] [datetime] NULL , [HitCount] [bigint] NULL , ) ON [PRIMARY] GO Create Procedure to Add Hit alter procedure usp_Hit1 as declare @CurrentID bigint declare @AddedDate datetime set @CurrentID=0 set @AddedDate=CONVERT(char(12), GETDATE(), 101) Select @CurrentID=HitID from ApplicationCount1 where Addeddate=@AddedDate if @CurrentID>0 update ApplicationCount1 Set HitCount=HitCount+1 where HitId=@CurrentID else insert into ApplicationCount1 values(CONVERT(char(12), GETDATE(), 101),1) Now on Session Start Call This Procedure now in database u have datewise count now u can use it to display number of hit for any day
-
create table in database CREATE TABLE [ApplicationCount1] ( [HitID] [bigint] IDENTITY (1, 1) NOT NULL , [AddedDate] [datetime] NULL , [HitCount] [bigint] NULL , ) ON [PRIMARY] GO Create Procedure to Add Hit alter procedure usp_Hit1 as declare @CurrentID bigint declare @AddedDate datetime set @CurrentID=0 set @AddedDate=CONVERT(char(12), GETDATE(), 101) Select @CurrentID=HitID from ApplicationCount1 where Addeddate=@AddedDate if @CurrentID>0 update ApplicationCount1 Set HitCount=HitCount+1 where HitId=@CurrentID else insert into ApplicationCount1 values(CONVERT(char(12), GETDATE(), 101),1) Now on Session Start Call This Procedure now in database u have datewise count now u can use it to display number of hit for any day
Thanks a lot no no
thanks more than a lot.