Frameworks For Tracking End User Usage / Analytics

Nov 6, 2010

I would like to have framework for tracking web site/page usage within company firewalls on asp.net platform. Want to track hits and integrate with particular feature within an application to understand end user usage (i.e. log particular actions of users in addition to simple page count type analytics). I have yet to find a framework to do this with asp.net/iis7 internal to a company (i.e. not google analytics).

View 1 Replies


Similar Messages:

Tracking URLs User Visited During Session

Mar 28, 2011

I have an app with alot of anchor tags in it. I wanna see what ones a user clicked on during a session. I thought aspnet automatically saved that information here:
string sessID = System.Web.SessionState.SessionID;

But there is no such thing as SessionID in the SessionState namespace. Is this information saved automatically, if so how do I access it? Here is my simple html

<body> <form id="form1" runat="server">
<div> Page 2
<a href="{URL}">Visit W3Schools</a>
<br /> <a href="[URL]">Yahoos</a>
</div> </form> </body>

View 2 Replies

Tracking User Actions In ASP.net Data Access Application

Jul 19, 2010

I need to log every user-action taken on a database using the username of the person logged into my ASP.net application as the identifier in the log. What is the easiest way to do this? I guess that for every method call to my data access layer I need to log the parameters of that call and the username and then call a new "log event" method that writes the details of the call to a table. Am I on the right track?

View 2 Replies

VS 2013 - Data Usage Per User?

Sep 3, 2015

I am new to ASP.NET and am constructing a small mobile site for our drivers to capture details when they deliver a parcel. Is there a way I can see the data sent and received from a user on the server? We want to track company related data usage and reimburse them for it...

View 10 Replies

Web Forms :: User Control Usage Dynamically?

Nov 12, 2010

I am trying to use my user control on my page which should load with data from a datatable. When the PageLoad event fires up I got the following message:

Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:

[Code]....

here is the page code which cause the error message:

[Code]....

View 2 Replies

Security :: Sessionid Usage For Logged In User?

Dec 29, 2010

I have a user login panel(called loginPanel1) standart from visual studio login control. 2 textbox 1 login button.

textBox1=UserName

textBox2=password

loginbutton1

I have a simple database table for user records:

Userid: int 4 key unique

username: varchar 50 not null

pass: varchar 50 not null

On user click to login button i query usertable from mssql usertable. If password is match i create a sessionid to try the user is verified temporarily for page. (my method can be wrong i dont know good the session and membership login session carry in asp.page)

When user pass is correct i open session with following code.

SqlDataAdapter adaptor1 = new SqlDataAdapter("select * from userTable where userName='" + Login1.UserName+"'", sqlconnection1);

...

(cleared long code)

filling ds with adaptor here
..

loginbutton1 click event:[code]....

There can be methodoligcal mistakes.

My question related to above is: 1. I have a sessionid (for example i set timeout 1 hour ) with above check. When user want to post a comment to a journalentry. How can i query that sessionid that earlier login page created, and how to deal with that sessionid to logically belongs to that user. I mean i have a sessionid per logged user that is obtained with checking from sql database to verify the user. But at next page (comments.aspx), when user wanted to post a comment to a journal for example. What should i do about that sessionid in comments.aspx's page "post comment" button event to check if that user is logged in. My question or my method can be wrong for user authentication about logins. I could not much find another method that easy level to log a user and carry the information about user logged in.

2. should i carry that sessionid with url (if i could manage to carry the sessionid to next comments.aspx page), how will i use it to ask like "that id is obtained by username snoopy" is username snoopy has logged in because there is a sessionid about that.I mean how to use sessionid when a user logged in with earlier page login.aspx that wanted to post a comment in comments.aspx. explain to useage of sessionid for login check i would appreciate. I checked some topics, some of them uses loginPanel of visual studio's automatically created database without any code behind. Others deal too complicated for user login info carry between pages.

View 4 Replies

C# - Web Dev-frameworks, Compatible With .net 3.5 +?

Jan 30, 2010

For someone, new to .Net based Web development: what web development frameworks are provided with or are compatible with .Net framework 3.5 +.LikeASP.NET Web Forms patternASP.NET MVC framework / pattern (1.0, 2.0)an you provide links as well

View 4 Replies

Which Testing Frameworks To Use For Web App Websites

Oct 26, 2010

I use visual studio 2005 and now my team wants me to try my hand at some testing frameworks for asp.net websites.I'm completely new to testing. I want to know what kind of automated testing can I do.Can I test my business logic,Can I test my UI.I just started using NUnit and I am getting a hang of it. For Web UI testing I've tried Nunit asp.Somewhere I found about Selenium, which of this is better.Also is there an add-in to test Javascript code with NUnit.Is there an better alternative to NUnit.

View 1 Replies

.net Security Tools And Frameworks?

Feb 21, 2011

As per the increasing security threats, my site needs extreme care in terms of security in all aspects. I know asp.net has built in some security measures (Anti-forgery token, cross-site scripting, authentication, roles), but that is just not enough.I need a tool to test all possible security threats (Brute-force attacks, .... IP location, browser info ... )and a framework (open source is better) that handles all these concerns and let you build upon.

EDIT,So to narrow a bit, my primary concern is protecting the "login" page from all possible threats.

View 2 Replies

MVC :: Community Open Source Frameworks?

Jan 14, 2010

I am looking to make the jump from PHP and Flash/Flex to .net and Silverlight (maybe not a full jump, but I want to be ready when Silverlight takes the lead from Flash)I'm looking for the common/trusted mvc framework most people use/support and is potentially backed by microsoft

In PHP we have Zend Framework http://framework.zend.com/ this is backed by key contributors to the PHP languageIn Flex we have the Cairngorm framework http://opensource.adobe.com/wiki/display/cairngorm/Cairngorm (developed by Adobe consulting) backed by Adobe the creators of Flex

There of course are other frameworks for both PHP and Flex, but a much smaller population base even if they offer some nicer things individually, they lack frequent updates or community support.So my question is, what is the "accepted standard" framework that people use with .net and/or silverlight?

View 4 Replies

State Management :: SessionState Across Frameworks?

May 13, 2010

[Code]....

From my understanding, the asp.net 1.1 application will login the user then store the information to a session and a cookie? I'm trying to access that cookie with a asp.net 2.0 application. Is this possible?

I'm thinking the mode would need to change to maybe StateServer or Sql.

View 14 Replies

.net - What's The Point Of Dependency Injection Frameworks

Aug 12, 2010

I am sure that I am somewhat lost in this area... my understanding is that Dependency Injection means initializing something that is required by a class..so for instance. If my controller is going to need a service and I want to be able to test it then I should define two Constructor methods for it... so, my question is.

public class CompaniesController : Controller
{
private ICompaniesService _service;
public CompaniesController()
{.......

View 6 Replies

.Net Best Practices, Best Frameworks, And Benefits Of The Latest Version?

Mar 8, 2011

1. .NET best practices, 2.best frameworks, and 3. benefits of the latest version?I need urgent help to convince the customer to use .NET, but they want me to list these 3 things. Can you help me list and/or point me to good summarized articles for these?

View 3 Replies

Visual Studio :: Add More Frameworks To VS2010, Multitargeting?

Apr 24, 2010

i have been trying the new VS2010, but i am having trouble to add to the dropdown list of frameworks the .net framework 2.0, i have installed the .net framework 2.0 and also the SDK, but nothing seems to make it to appear in the VS2010 multitargeting dropdown list. Can somebody give me the reason of this, what do i need to do?

View 3 Replies

Component Versus Action/Request Based Frameworks

Jul 8, 2010

Probably one of those things you know and use every day without thinking what it is:

Do you think Component based frameworks are better than Action/Request based web frameworks?

From the naming I think I'm using both (of course, I must be wrong if things are asked like this).

My web front-end (Pages and Code behind / Views and Controllers) are Request/Action while my other layers are Component based...no?

Or does this apply to specific frameworks or ways doing things?

View 4 Replies

Looking For Better Way For Analytics In C# ?

Jan 20, 2011

I am using Microsoft Enterprise library logging in c# to log the events in SQL DB and I use this records for analytics purpose.is there any better way for analytics in c#. for example "Microsoft StreamInsight from SQL Server 2008".

another way is embedding Javascript in HTML code which google analytics is using. But in this way I should send all my logging data to the logging sever in HTTP post.

View 3 Replies

Can Implement Google Analytics In Mvc

Aug 28, 2010

I want to integrate Google analytics in my asp.net mvc application. So im doing some R&D for it to find out which one is the better. I find out a Google Analytic Dashboard Controls which are available at

[Code]....

But they are server control and im not sure how to implement in asp.net mvc.
Secondly can i implement asp.net charts in my asp.net mvc application?

View 2 Replies

Get Google Analytics Code From DB?

Mar 11, 2010

What's the best way to get the Google Analytics ID from a database, and display it on a Master.Page? Maybe getting the page details (page title, etc) and displaying the GA code using a .net control? I am not sure what the best way to do it, as the GA ID would change for each of my clients.

View 3 Replies

CreateUserWizard For Google Analytics

Feb 8, 2011

I'm trying to track how many people are signed up and set up goal for Google Analytics. I use CreateUserWizard and I'm trying to set a goal when users reach coplete wizardstep section or when users finish createwizardstep1 (first signup page) CreateUserWizard has 3 steps. first sign up page, second optional page and finish page. I'm sure that I can separate optional info section and redirect different page after step1 but I would like to avoid that if possible.

View 3 Replies

Web Forms :: Use Google Analytics On Website

Mar 22, 2010

I want to use Google Analytics on my asp.net website. My website have a masterpage that each page will use. So my idea is to put the GA code in the bottom of the masterpage and in that way get it included into all pages. Is that a good idea to get the tracking right? Or might there be any problems of using this way?

Another thing is that I need to track conversion for a goal that I have setup in GA. I need to see the funnel, the pages leading to the goal. The problem is that these pages are actually the steps of a asp.net wizard control. What is the best way to track each step of the wizard control as individual steps in GA to reach the goal?

View 2 Replies

Possible To Get Google Analytics To Work In An Admin Section?

Feb 8, 2010

Is it possible to get google analytics to work in an admin section? so it will be implemented in the website.
how do you do this?

View 4 Replies

Integrate Google Analytics Reporting In A Website?

Jun 18, 2010

One of my clients has requested this feature. They dont want to login to google analytics and want all the tracking/reporting through the site. Is there a way to show reporting inside an asp.net page?

View 1 Replies

Google Analytics - Integrate Static’s Into Website?

May 31, 2010

I am using asp.net 3.5 with C#. I have registered my application in google analytics and it is successfully showing my statics. But I want to integrate that statics into my website, is their any way I can do it.

View 2 Replies

C# - Show Google Analytics Dashboard On Site

Mar 22, 2010

I have an ASP.NET website set up, and I'm using Google Analytics for page tracking. The only thing I don't like is that I have to go away from my site (to the Google Analytics site) to see the report. Is there any way to show the Google Analytics data on my own site with all the AJAX that they have?

View 5 Replies

Where To Place Google Analytics Code In Web Application

Oct 19, 2010

I want to find a place to put my Google Analytics code in my ASP.NET web application. I would like to place it somewhere once and not have to copy and paste the code into multiple files. Is there somewhere that I could inject it that I would only have to include it once and all pages would be effected? I am not using MasterPages unfortunately.

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved