Question QUESTION: Hi.. I have got the training of using the basics of Visual Studio 2005 .. Can i get any smapll project or description of a project so that i can build my confidence to do projects in Visual studio using C#
ANSWER: hi
Sorry for the late in response, I was so busy at my work...
You can build a simple shopping cart where user be able to select product and add quantity and finish the order...
If you need more detail check on codeproject.com you'll get more detail and sample code to start with (better not to use sample code rather build your own).
-Srini
---------- FOLLOW-UP ----------
QUESTION: thank u.. i'm trying to build it on my own. have made a register page , login page and also a product page. In the product page i want to add image and discription. i want to know what query can be used to store the image in a database and use it here in products page. plz help me.
ANSWER: Hi
To build image funcationality, you can upload the image into images folder, store the image name in the database, while displaying image sepecify the path and image name from the database.
don't store the image directly in the database.
-Srini
---------- FOLLOW-UP ----------
QUESTION: Hi,
I have stated with shopping cart project. The problem is the items sent to the cart by clicking the add to cart button gets deleted once i come back to the searchitem page and add another item. i have used the grid view in the cart page, connected to the searchitem page based on querystring that is the ProductID. Please help me out.
Answer Hi
Once you add to cart store what products added into the session variable
based on the session variable value you need to select the variable. don't use querystring...
assign value to session variable: Session["key"] = "value";
retrieve value from session variable : String newvar = (String) Session["key"];