 |
| ASP E-commerce As of Oct 5, 2005, this forum is now locked. No posts have been deleted. Please use "Classic ASP Professional" at: http://p2p.wrox.com/forum.asp?FORUM_ID=56 for discussions similar to the old ASP Pro Code Clinic or one of the other many remaining ASP and ASP.NET forums here. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP E-commerce section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

January 24th, 2005, 01:12 PM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Wishlist function in e-commerce using VB.NET
Hi,
I want to add a wishlist function in my website.But I don't know how to complete it using VB.NET ?
I need the programmer help:)
Thank u very much:)
Best wishes,
newegg19
|
|

January 24th, 2005, 02:26 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
I am afraid none of us is going to build the entire application for you, so I guess you'll need to ask more specific question.
What do you need help with? Database design? Having VB.NET talk to the database? user Interface design?
Have you created anything so far? If so, what and what parts do you need help with?
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Karma Police by Radiohead (Track 6 from the album: OK Computer) What's This?
|
|

January 25th, 2005, 03:38 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
quote:Originally posted by Imar
I am afraid none of us is going to build the entire application for you, so I guess you'll need to ask more specific question.
What do you need help with? Database design? Having VB.NET talk to the database? user Interface design?
Have you created anything so far? If so, what and what parts do you need help with?
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Karma Police by Radiohead (Track 6 from the album: OK Computer) What's This?
|
Hi, Imar
I am sorry that I have cross-post message.Because I use this to send message on the forums first time and I don't how to use this very clearly :)
To my question, I can design the wishlist page interface , and also I can decide what information will be needed and displaied on this page.But I don't know how to link this page with another page like amazon's wish list.In the amazon, when you click wishlist button on the product details page, you can access the wishlist page. But I add wishlist button in my product details , I can'taccess wishlist page and also no product is added into wishlist:(
I hope you can help me:)
Thanks:)
Best wishes,
newegg19
|
|

January 25th, 2005, 01:42 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
How about passing it through the QueryString?
<a href="WishList.asp?ID=123">Add to wishlist</a>
In this example, 123 is the ID of a product on the Products page.
Then in WishList.asp, you can do this:
Dim ProductId
ProductId = Request.QueryString("ID")
' Then do whatever you want with the product ID here.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|
|

January 26th, 2005, 03:42 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
quote:Originally posted by Imar
How about passing it through the QueryString?
<a href="WishList.asp?ID=123">Add to wishlist</a>
In this example, 123 is the ID of a product on the Products page.
Then in WishList.asp, you can do this:
Dim ProductId
ProductId = Request.QueryString("ID")
' Then do whatever you want with the product ID here.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|
Hi, Imar
Thank u very much for your careful and detailed help:)
Best Wishes,
newegg19
|
|
 |