Showing posts with label e-commerce. Show all posts
Showing posts with label e-commerce. Show all posts

Monday, March 26, 2012

Suggestion

Hello,

I am working on a e-commerce application, which should
allows me to add three values each time I add the items to
the basket. Now I wonder where and how I should store
these values so that I can reuse them in the next screen?

Please advise me.Two options that come to mind are in a database, and in the Session
object. Which one you pick really depends on the requirements of your
application. For instance, if you want a user to be able to add three
items to the shopping cart and come back three days later, you'll need
a persistant data store like a database.

You might want to check out the source code to the Commerce Starter
Kit: http://asp.net/Default.aspx?tabindex=8&tabid=47 This is a
learning tool and will give you some implementation ideas.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 16:42:07 -0800, "Vishal"
<anonymous@.discussions.microsoft.com> wrote:

>Hello,
> I am working on a e-commerce application, which should
>allows me to add three values each time I add the items to
>the basket. Now I wonder where and how I should store
>these values so that I can reuse them in the next screen?
>Please advise me.

Suggestion

Hello,
I am working on a e-commerce application, which should
allows me to add three values each time I add the items to
the basket. Now I wonder where and how I should store
these values so that I can reuse them in the next screen?
Please advise me.Two options that come to mind are in a database, and in the Session
object. Which one you pick really depends on the requirements of your
application. For instance, if you want a user to be able to add three
items to the shopping cart and come back three days later, you'll need
a persistant data store like a database.
You might want to check out the source code to the Commerce Starter
Kit: http://asp.net/Default.aspx?tabindex=8&tabid=47 This is a
learning tool and will give you some implementation ideas.
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 15 Dec 2004 16:42:07 -0800, "Vishal"
<anonymous@.discussions.microsoft.com> wrote:

>Hello,
> I am working on a e-commerce application, which should
>allows me to add three values each time I add the items to
>the basket. Now I wonder where and how I should store
>these values so that I can reuse them in the next screen?
>Please advise me.

Saturday, March 24, 2012

Suggestions for implementing personalization

I'm creating an e-commerce site and would like users to be able to freely
navigate the pages without signing in. However, authorization and
authentication is required to purchase products.
Currently I am using session variables to monitor if the user is logged in
or not. I have inherited a base page from the page class to handle the chec
k
for this in every page.
Forms authentication seems to forceful for this situation where I would like
to remain 'hands-off' until the user decides to login.
Suggestions are greatly appreciated, thank you."examnotes" <NathanV@.discussions.microsoft.com> wrote in
news:65AFB42E-B97D-464F-98C7-3C251BBAAED7@.microsoft.com:

> I'm creating an e-commerce site and would like users to be able to
> freely navigate the pages without signing in. However, authorization
> and authentication is required to purchase products.
> Currently I am using session variables to monitor if the user is
> logged in or not. I have inherited a base page from the page class to
> handle the check for this in every page.
> Forms authentication seems to forceful for this situation where I
> would like to remain 'hands-off' until the user decides to login.
What you probably want is to implement roles based authentication.
Lucas Tam (REMOVEnntp@.rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
[url]http://members.ebay.com/aboutme/spot18/[/url]

Suggestions for implementing personalization

I'm creating an e-commerce site and would like users to be able to freely
navigate the pages without signing in. However, authorization and
authentication is required to purchase products.

Currently I am using session variables to monitor if the user is logged in
or not. I have inherited a base page from the page class to handle the check
for this in every page.

Forms authentication seems to forceful for this situation where I would like
to remain 'hands-off' until the user decides to login.

Suggestions are greatly appreciated, thank you."=?Utf-8?B?TmF0aGFuVg==?=" <NathanV@.discussions.microsoft.com> wrote in
news:65AFB42E-B97D-464F-98C7-3C251BBAAED7@.microsoft.com:

> I'm creating an e-commerce site and would like users to be able to
> freely navigate the pages without signing in. However, authorization
> and authentication is required to purchase products.
> Currently I am using session variables to monitor if the user is
> logged in or not. I have inherited a base page from the page class to
> handle the check for this in every page.
> Forms authentication seems to forceful for this situation where I
> would like to remain 'hands-off' until the user decides to login.

What you probably want is to implement roles based authentication.

--
Lucas Tam (REMOVEnntp@.rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Suggestions on Web page with DB

Hi,

I m new to this environment. I wanna create a web page, actually like an e-commerce site but without money transactions. Shortly, this site should have register-login page and orders page, that user can choose orders. There should be DB which stores, user information and order information.

Is there any source code or suggestions on this situation?

thanks in advance.

Hello cenk,

check the Learn section in this site. In particular the Data Tutorials:http://www.asp.net/learn/dataaccess/default.aspx?tabid=63

Regards. -LV