designing first time ecommerce web need help Digital Media Digital Marketing by selicon.valley … page with rates people log in register themselves and go shooping after they check out pay thorugh through various options so… page with rates people log in register themselves and go shooping after they check out pay thorugh through various options so… Help me out with shopping n adding to cart. Programming Software Development by tactfulsaint … action like this if i choose fergi.....add to car. shooping cart.... fergie....big girls dont cry ......$56 " hit em… How do I Add to Cart Programming Software Development by tactfulsaint Please i need help with a code that can help me add an item to cart take me to the next page and i will still see thesame item i choose on the shooping cart. Editing in GridView Control Programming Web Development by guptaalok12 Here is my code i have shooping cart.i have created a table and bind this with … problem Programming Software Development by bunty071 actully hv some problem in creating an assigment in my college assigment is about to draw a flow chart of online shooping frist to show the avaliable online shopping things then about shopping cart and at last calculation of all the bill :( i m vry much helpless Expire cookie immediately Programming Web Development by JuranHuman Hi Everyone I am busy with a shooping cart but only use cookies to eliminate using a login. … Beginner Help Programming Software Development by Kleon … (secondchoice == "yes"); Console.WriteLine("Thank you for shooping with us"); Console.WriteLine("Total =" + TotalCost… Re: ASP and SQL ? Programming Databases by Tinaa … be a small website. arround 20 product on it. login, shooping cart, payment online "paypal" i think. the website… Re: how do you get space to sell for hosting Hardware and Software Networking by igotdreams … for your clients. For instance a visual SiteBuilder program, OSCommerce (shooping cart), PHPBB (forums) and more. Believe me, you will be… Shooping cart.. Programming Software Development by ezkonekgal what am i going to do? we are tasked to create a shopping cart. Product list should be stored in a text file. I have it already, the thing is when the user would buy a certain quantity of a certain product, let say Product list: [U]item# price quantity[/U] pencil $5.00 10 Mr. A bought 2 pencils totaling $10.00 to … Re: Shooping cart.. Programming Software Development by stultuske [QUOTE=ai0372;715620] how do i get the quantity of the product in the list to change? [/QUOTE] by thinking of the basic principles of OO-programming and using getters and setters, or a method that takes a variable with the number of products that should be added to the present quantity, and add it. like this: [Code=Java] public void … Re: designing first time ecommerce web need help Digital Media Digital Marketing by wynn455 Get Zen-Cart. It's free and kinda gives you an Idea how to work around an eCommerce Program. Re: designing first time ecommerce web need help Digital Media Digital Marketing by JoeDP Evaluate an open source shopping cart and use it for a week or so to test out all the functions. Open source carts may work out better for you if your client wants you to make changes to their functionality. There are plenty of them out there like Zen Cart, OSCommerce, etc. Hope this helps. Re: Help me out with shopping n adding to cart. Programming Software Development by tactfulsaint still need help Re: How do I Add to Cart Programming Software Development by jwenting cart.add(item); Re: Editing in GridView Control Programming Web Development by UIJAD protected sub WTVRNAMEHERE (ByVal sender as object, ByVal e as System.Web.UI.WebControls.GridViewUpdatedEventArgs) Handles GRIDNAME.RowUpdated here you grab the row ( e.affectedrows) and apply the changes in the datatable ( which is the initial datasource... all that of course after adding the "Edit/Update" button to your gridview End… Re: problem Programming Software Development by vmanes First of all, please replace the broken keyboard you're using - it seems to be missing some vowels (reasonably proper spelling using full words, full sentences works best here) Second, this is a C++ forum, where we focus on actual code. Your assignment appears to be just the design aspect (flowchart), which might be better addressed in the [URL… Re: Expire cookie immediately Programming Web Development by siju kuriakose Hi, Check this one ... protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Response.Cookies["yourcookie"].Value = "siju"; } } void btn_OnClick(object sender, EventArgs e) { if (Request.Cookies["… Re: Expire cookie immediately Programming Web Development by Lusiphur Using the page_load process to re-check cookie validity should allow it to check whether the 'item' is current or expired each time the page reloads (ie: postback). By alternating between !IsPostBack and IsPostBack respectively you can customize your page_load to act differently for new page loads vs postback loads as a result of 'form' … Re: Beginner Help Programming Software Development by ddanbe Check out [this snippet](http://www.daniweb.com/software-development/csharp/code/371819/code-template-for-a-menu-in-a-console-application) In a class you can use as many nested while loops as you like.