Hi Pampam110, Can you tell me how you solved your problem? I have the same one and cannot figure out what to do. Thanks.
JacSophie
Posts
-
ASP.NET Configuration Problem -
Problem with Web Site Administration ToolHi Kogg_G, I have the same problem and cannot find a solution. Did you find out how to solve your problem? If you did, I would appreciate you to telling me what to do or where to find some pertinent information. Thanks.
-
Hit counter on a web pageHi Abhishek Sur, I do want to store the counter hits number in a data store, but cannot figure out how to do it. I have created a test database (DbTest) in SQL Server 2005 with a Param table and a simple column, NbHits. I can connect to it and display the number on a page. That is it. I would like my counter to be incremented every time a user visits the main page. I would also like to know which way is best for a simple personal web site. Do you know of some links where I could find some example? Thanks.
-
Hit counter on a web pageHi HarrisonB, The hit counter should never be reinitialized to 0, even when the server goes down. It should read its value from some data store where a start value could be set (<> 0) at the beginning. I think I can find some code where a xml file can be used. I will look it up and give you an answer as soon as I can. Thanks for your time.
-
Hit counter on a web pageHi HarrissonB, This is a great start, but the counter gets reinitialized to 0 every time. There must be a simple way to store it somewhere and read the value from this data source. Now, I suppose there are many ways to store such a value, in a database (SQL Server, Access, etc.), in a text file or XLM file, and maybe some others. For a simple personal web site, what would be the best way (KISS method)? In a text file, would it be safe? Thanks.
-
Hit counter on a web pageHi, I am a new user to ASP.NET and VS.NET and I need some help. I am also a new user to CodeProject as well. I am trying to find a simple way to add a hit counter on a web page (ASP.NET and VB.NET) in VS.NET 2005. I found this example "Fast ASP.NET Hit Counter with Full Digit Graphic File Support" By JediBaron. I tried it but something goes wrong. I get this error on line 59:
Dim i As System.Drawing.Image = System.Drawing.Image.FromFile(Server.MapPath(Request("src")))
I really cannot figure out what is wrong and how to correct the problem. Any help will be appreciated. Thanks.