VS 2010 - Get Information About Visitors To Website

Sep 27, 2011

I just created a download counter on my website that increments when a download link is clicked. It also records the times of the downloads in a database. Along with that I was wondering if I could gather some general information about location of the visitor to my website that clicked the download link. Is there a way to do that? Maybe you're not supposed to try to get overly specific data because that would be a sort of invasion of privacy but if I could collect something that would tell me an approximate location of the visitor to my website that clicked the download link that would be nice if that can be gotten without too much trouble.

View 7 Replies


Similar Messages:

Display Last 100 Visitors To Website In Silverlight?

May 13, 2010

I am interesting on log down the recent 100 visitors around the world whom have visited to my website and display their country information and IP address on the website developed by Silverlight platform.

Where can I get accurate data for detecting the visitors' IP address and geo-location information?

View 2 Replies

C# - Detecting New Visitors To Website Without Using Cookies?

Mar 11, 2011

We are looking to create a website that displays information to all new visitors to a site, i.e. welcome,The big problem is that our website is not allowed to use long-lasting cookies (i.e. over 20 minutes). Does anybody know of any way we can determine whether a user has visited the site before or not. As another restriction, we can not add anyform of registration to the system. The application is being created in ASP.Net 3.5.

View 6 Replies

SQL Server :: Setting Permissions For Website Visitors?

Sep 14, 2010

I have my SqlServer 2005 database at a web host. I recently figured out how to set permissions for the stored procedures (see this link if you face the same problem:

[URL]

Now I wonder: What permissions should I give the website's visitors?

In a stored procedure's Properties window, I have three availabale users, the db owner (the db name), "guest" and "public". My bet is on public.

As far as permission types go, I hev the following available:

Alter, Control, Execute, Take Ownership, and View Definition. My guess is that the one of interest is Execute, correct?

In other words, should I set all stored procedures to Execute for public (not that I seem to have the permission to do that myself - I get an error message when I try to alter them)? If so, could I ask the web host to set them globally for me? Or should I only set stored procedure using UPDATE/INSERT/DELETE to Execute?

View 4 Replies

Web Forms :: Count Online Visitors Of Website?

Aug 17, 2010

I need to show the number of online visitors and all visitors in my website. I use below code in global.asax file. But I thinks it is not a right way because I have seen false result for online visitors in my website.

Codes:

void Session_Start(object sender, EventArgs e)
{
Application.Lock();
Application["OnlineUsers"] = (int)Application["OnlineUsers"] + 1;
Application.UnLock();
System.Data.SqlClient.SqlConnection cn = new

[Code]....

View 4 Replies

Allow Website Visitors To Create Text Files

Sep 3, 2013

How can I allow my website visitors to create text files in ASP.NET?

View 2 Replies

Web Forms :: Track Visitors Of A Website Using Cookies

Jul 17, 2015

I have a scenerio like i have a website where by visitors comes in like you have aspforum.net. I want following:

1. when user visit on my site a cookie or script generate on the user machine

2. then if user is searching for shoes, books, or any thing that data should come on my server database so i can trace what is user behavior and likes and dislike.

How can i achieve it...

View 1 Replies

Web Forms :: Count The Number Of Visitors In Website?

Jul 24, 2012

How to use the session and application variable in our website? And if we want to count the visitors of our website then how it will possible.

View 1 Replies

Web Forms :: Count Unique Visitors In A Website Using IP Address

Jun 16, 2015

How to count the no. of visitors based on ip address using c# and mysql?

View 1 Replies

Social Networking :: Authenticate Visitors On Website Using Facebook Authentication

May 7, 2015

How to authenticate the visitors on my website using facebook authentication but when user logged on my website through facebook authentication at the same time visitors username, password and email must be registered with my database as well, so next time user can logged in through facebook authentication or through my website username and password as well.

View 1 Replies

Configuration :: Prevent Website Visitors From Browse The Directory Pages And Folders?

Feb 24, 2011

If my application URL is this:

http://localhost:51422/MyApp/Pages/FormView.aspx

I want 2 things:

1- I don't want any people to delete "...../FormView.aspx" and go to this[URL] and browse the directory pages and folders names.

2- If anybody tired that, the application should redirect him to login page or home page.

View 5 Replies

Web Forms :: Fetch Specific Information(string) From Another Website And Display The Same In Website

Sep 21, 2010

I want design a page where the end user enters information on my page and related information is fetched from the another website on my web page.

For example: Capturing City and state name from USPS.com

End user Task : Enter zipcode and click button 'Fetch'

My page perform few task

1. opens usps site backend

2. Enters the zipcode

3. Captures city name and state as temporary value from the usps

4. Displays the same in labels present in my home page.

View 2 Replies

Web Forms :: How To Send Some User Information One Website To Another Website

Aug 10, 2010

i want to send some user information one website(ASP) to another website(ASP.NET)

View 3 Replies

Add Code To Know Visitors Count And Online Visitors Count?

Jan 5, 2011

How to add code to know visitors count and online visitors count ?

is there a good control or code ?

I use ASP.Net, C#.Net ad SQL Server

View 5 Replies

VS 2010 - Storing Sensitive Information In A Session Variable?

Dec 17, 2010

I am creating a website that allows users to login to their gameserver remotely and send / receive commands. The connection happens via an UDP socket and requires simply the IP of the gameserver, and a password.

On my website, users can add servers to their accounts, where the server IP and password are stored in a database. Then they can connect to any of their servers, which creates a new Socket object and connects to it using the IP and password of that server.

This Socket object, embedded in an object that also stores the server IP and password, is stored in a Session variable when the user connects, and is retrieved on every page. For example, there's a page where the user can view a list of the players on the server (and kick/ban them), a page with server settings, a page with messages, etc. All these pages require the Socket connection to get their information (they send a certain command and parse the response). When I need to send a command via the socket, I need to send the password of the server each time (otherwise it does not work). My question now is: how secure is this? The password of a server is sensitive information*, but I am storing it in a session variable and sending it (using the Send command of the Socket object) to the server.

i think the Session variable is stored on memory on the server, so I don't think so, but I'm really unsure about these kind of things and I'd like to be certain that my website is secure. Well, I think it will never be 100% secure but I want it to be at least not worth the effort for someone to hack the password. If it takes a lot of trouble then people wouldn't bother, but I don't want to find out that people's passwords are being thrown out on the street (so to speak) and that my website is completely insecure...

View 6 Replies

Store The Log Information For Website

Mar 2, 2010

I want to store the log information for website, is there is any inbuild component for that of free source code for that. I want to track the exception and other information that occure in my web site.

View 5 Replies

How To Collect Billing Information From Website

Jan 7, 2011

we are developing ASP.Net 4.0/C# web application.

We need to implement the payment process (credit card,debit card, netbanking and paypal payment) under my website.

we dont need the third party page redirection and return to back.

We need to collect the information from our site (like billing addres,credit card information) and process through webservice.

View 1 Replies

Security :: How To Get Certificate Information Of A Website

Apr 8, 2010

I want to get the certificate information of a website. I means that i've a textbox on a page. When i enter a url in that textbox and press the button. The certificate information of that website should be returned.

Say, i've entered the [URL], Then it should return the Certificate authority, Validation period etc.

View 1 Replies

Web Forms :: Grabbing Information From Another Website?

Jan 31, 2011

I'm using asp.net - I need to grab live data from a website. Here's an example:

[URL]

That website provides live data share prices. I need code to retrieve the share price from the website and display it in my own page. I know you can get share price widgets online but all I need is a simple way to retrieve the share price values.

View 5 Replies

Web Forms :: Can Automatically Paste Information Into Website

Apr 21, 2010

I am readin information typed by our customer's and creating a database. We then manually take those responses and type them into another database on line. We do this so that we can track the number of request at each location. My question is there any way I can read the database, one record at a time, and auto populate the online fields. I could then manually press submit if needed.

FYI: The online form is supplied by another sister organization and I do not have a way of changing it.

View 3 Replies

Webhosting - Alternative To Event Log For Website Running/ Get Information About That Failure?

Oct 3, 2010

When I run a IIS site locally, all site failures (aspx compilation bugs, exceptions in code, etc) are logged to the system event log. I can check the event log to see the HTTP request path and the exception details.

When I run the site on a webhost, I don't have access to the event log. How can I get the same level of error information?

I should be using a logging provided that records exceptions to a database or something. But suppose that code doesn't even get a chance to run, perhaps because a DLL doesn't load. How could I get information about that failure?

View 1 Replies

C# - Customize Website For Anonymous Users And Remember Settings And Information?

Mar 2, 2011

I have a E-Shop Site and I need some customization for my users like following :

Store favorite products in their own basket.Customize products list in order to what are their favorite. It must remember their basket next time they want to visit our site.

my question is how I can store information for my customers who are new to my web site also most of customers don't like to have username and password then login first they like to buy during a week and at the end of week pay for them then we can send some products to their locations.

I have already written my application using asp.net with framework 4.0.

View 3 Replies

Visual Studio :: Selecting Emit Debug Information When Publishing Website?

Oct 14, 2010

what exactly selecting emit debug information when publishing web site do ?

if i select this can i see error variable names at stack trace ?

View 1 Replies

Visual Studio :: Save 2010 Express Website To 2008 Express Website?

May 11, 2010

I started working on a website using 2010 Express. However, the hosting company that I am using hasn't fully implemented .NET 4.0. I'm wondering if there is a way that I can save my website for compatability with 2008 express. Then I can finish and publis using 2008 Express.

View 1 Replies

VS 2010 - Website Time Out

Apr 16, 2012

I am wondering how I could implement a timeout feature in my website when after a period of non-inveracity from the user for example 20 minutes then this will redirect back to a timed out page? I'm using VB 2010

View 1 Replies







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