我正在爲我的網頁創建一個計數器。無論如何,每次用戶訪問我的asp.net應用程序時,都會將其數據存儲到數據庫中。我正在使用Global.asax和事件Application_Start。這是我的代碼。ASP.NET訪客計數器
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
WebpageCounter.SaveVisitor(new WebpageVisitor()
{
VisitorIP = HttpContext.Current.Request.UserHostAddress,
VisitedOn = DateTime.Now
});
}
但它從不將任何東西存儲到數據庫中。 SaveVisitor函數已經過測試並且功能正常。有什麼建議麼 ?
感謝
另請參閱該SO螺紋:http://stackoverflow.com/questions/669049/implementing-a-visitor-counter – BrokenGlass