Nov 21, 2009

User Login And Tracking

free web hosting
Open Discussion > MODERATED AREA > Computers > Programming Languages > .NET ( ASP.net VB.net )

User Login And Tracking

kvarnerexpress
know vba with MSAccess but need to create a web app of an MS Access App.

I need to make it multi user with the user only being able to see and edit his own data. The db is quite simple and could have only a single table, but could divide into one main table with a couple of relational tables.

I need the user to be able to login in and create his own password. I would want the user to have to validate (e-mail) simular to registering for this forum.

I noticed that this forum is PHP driven. I thought that might be a better solution but a higher learning curve from vba to vb.net


Comment/Reply (w/o sign-up)

whafizi
Why dont you try to use PHP + MySQL solution? I believe it is better for web apps

Comment/Reply (w/o sign-up)

rvalkass
I agree. For a web application, using PHP and a mySQL database is a lot better than vba or vb.net

There are lots of sites where you can find tutorials or pre-made scripts to download. Just download a pre-made login script and you are away!

Try having a look at some of these sites:

http://www.hotscripts.com/PHP/Scripts_and_...Authentication/
http://www.hot-php-scripts.com/php-script/...ogin_System.htm

Comment/Reply (w/o sign-up)

imran
QUOTE(rvalkass @ Jul 13 2005, 09:48 AM)
I agree. For a web application, using PHP and a mySQL database is a lot better than vba or vb.net

There are lots of sites where you can find tutorials or pre-made scripts to download. Just download a pre-made login script and you are away!

Try having a look at some of these sites:

http://www.hotscripts.com/PHP/Scripts_and_...Authentication/
http://www.hot-php-scripts.com/php-script/...ogin_System.htm
*



PHP and MySql might be good solution for web based applications but i dont think if somebody already knows VB he should try PHP. As far as free applications and script concerns even in ASP a lot free scripts and applications available. Agreed not as many as in PHP but more than enough for a beginner.

I suggest if you already know VB then develop your webiste in ASP and Access. For free scripts in ASP you can check these websites

1 - http://www.webwizguide.info/
2 - http://www.aspfaqs.com
3 - http://15seconds.com/
4 - http://www.4guysfromrolla.com

You can also search in google by typing FREE LOGIN SCRIPT IN ASP.

 

 

 


Comment/Reply (w/o sign-up)

FeedBacker
A user logon and tracking script, which language to use?
User Login And Tracking

I would like to learn a language for creating or using scripts to allow users to be able to logon to their own personal account to use my site and allow me to view the date/time of which links are clicked so I can keep track of which user joined which sponser so I can reward them for doing so. Is this possible?

Thanks in advance :)

-question by David Almond

Comment/Reply (w/o sign-up)

bittr
QUOTE (FeedBacker @ May 14 2008, 12:38 AM) *
A user logon and tracking script, which language to use?

User Login And Tracking



I would like to learn a language for creating or using scripts to allow users to be able to logon to their own personal account to use my site and allow me to view the date/time of which links are clicked so I can keep track of which user joined which sponser so I can reward them for doing so. Is this possible?

Thanks in advance smile.gif

-question by David Almond


Hi, David!
It's been awhile since your post here, but maybe you still track it somehow and you'll see my piece of advice.

Since you posted in the .NET forums, I'm going to give you some ASP.net suggestions. The big idea is: yes, it is possible what you have in mind, and actually it's not so hard.

1. For the user login, the easiest way to do it is by using a Login Control, like described here in the MSDN documentation: http://msdn.microsoft.com/en-us/library/ms178329.aspx
You don't need to write any code, you just add this control from the toolbar in Visual Studio to your website's masterpage, and it will automatically take care of your users' logon, authentication, etc.

2. About seeing the date/time and what links your clients clicked, you will need a bit of code (C# in my suggestions, but you can use VB.net also). You can make all the links on your website to be at design time LinkButton controls, not simple links. LinkButtons look exactly as normal links to the end-user, but the beauty is that you can attach events to them,and make some code execute on those events.
In your example, you can use the OnClicked event. When the user clicks a link, you'll add code that sees who it is (you will find information on how to do it in the link I provided above), you can use the event arguments to see what link he clicked on, and finally you can get the date/time they clicked with DateTime.Now(). After you'll get these 3 pieces of information (all you wanted) you store them in a database, and then you can check there your users' activity.

If you need more details, or help with some part of this process, post here and I'll gladly help you.

Comment/Reply (w/o sign-up)

(G)

I need to make it multi user with the user only being able to see and Edit his own data. The db is quite simple and could have only a single Table,

I am using PHP/MySql for the same purpose..Current, myl system allows everyone to access the database...Which I don't want...I want user to acess limited part of the database ...And make modifications in that part only...Similar for the other user..He will be able to modify his own part...

 Please anyone anyguideme on this


Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : user, login, tracking

  1. Create A Dynamic Forum User
    (8)
  2. [vb.net] Gaiaonline Login
    Login through vb.net (0)
    This tutorial will teach you how to login in gaiaonline through vb.net. I'll do it with a way
    that you don't need to leave vb.net to get/post (bad joke) anything. What you need in this
    tutorial is: Download and extract the Resources.rar file (i'll use 'c:\resources' in
    this project) This tutorial /tongue.gif" style="vertical-align:middle" emoid=":P" border="0"
    alt="tongue.gif" /> Now let's start Open the VS.NET and create a new project: You now have
    something, that is called a form, let's rename it to GaiaLogin Easy, let's take a....
  3. Manipulating User Input From A Form
    (3)
    I have a HTML page with a form on it. I have an ASP page that processes what a user has entered into
    the form (updates a database etc). I now need a page that fits between these two pages to
    “pre-process” the users input. I need to do it this way because I am not allowed to change either of
    the two existing pages. I know how to read what the user has input into the form and I know how to
    pass control onto the next page. What I have not been able to work out is how to change the user
    input and have those changes passed onto the next page as if nothing has happened (th....
  4. New Ado.net User
    (0)
    Can someone point me to an example in C# that does the following (I will use the Northwind database
    to explain), using a DataSet: 1.) Add a Customer to the Customers table. 2.) Add an Order to the
    Orders table with that new Customer's CustomerID. Basically, what I am not sure how to do, is
    figure out what the CustomerID is before adding the record to the Orders table. I thought I could do
    both 1 and 2 inside the DataSet, before calling Update, is this true? Or do I need to call Update
    after adding the customer in order for a CustomerID to be generated, and then do an....
  5. Help Making A Login Page And Registration Page !
    Help ! (1)
    Ok im using Dreamweaver for my Website Development but I try to make a Login/Registration page but
    it doesnt seem to work any ideas /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif'
    /> I Have a past project ive done over the years, www.juststuff.co.nr it was for Habbo Hotel
    Scripting and it was just for fun /laugh.gif' border='0' style='vertical-align:middle'
    alt='laugh.gif' /> From John /rolleyes.gif' border='0' style='vertical-align:middle'
    alt='rolleyes.gif' /> ....

    1. Looking for user, login, tracking

Searching Video's for user, login, tracking
See Also,
advertisement


User Login And Tracking

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com