Archive for April 2009


What should I bid on an ecommerce website with a very large catalogue of items?

April 29th, 2009 — 02:52 am
ecommerce
Stephanie S asked:


I am preparing to bid on the design and coding of an ecommerce site using Paypal and PHP (the easiest way to do it, I believe). The site is a lingerie site, and will have roughly around 1200 different items to choose from, some with different color choices, most with different size choices and prices. Even if I create a database and do the PHP to reduce what would be an enormous amount of html, this is still going to be a lot of data-entering and work. I have a feeling that most lingerie sites do not carry this much stuff, so I’m worried that the owners are trying to get me to cheap the price while they unload this monster catalog on me. This is the biggest site I have ever tackled, so I would greatly appreciate any advice from seasoned ‘pros’ out there. I have a degree in web development but am still green on freelancing. I am US based in the Mid-West (Michigan.)

Content supplied by Yahoo Answers

4 comments » | Programming Design

Do i need to use a bigtime ecommerce storefront host or should I use the small guy that can give me personal s?

April 28th, 2009 — 03:32 am
ecommerce
bigherbs asked:


There are a lot of choices out there and I don’t know what to use. In a effort to run things a little leaner cost wise I would prefer to use something outside of the big boxproviders of these services?Do I even need to use them in the first place can someone else manage that for me?I know I have to pay and i would pay for good service its just all confusing to me.

Content supplied by Yahoo Answers

2 comments » | Small Business

How long does it take to build a good customer base for ecommerce businesses?

April 27th, 2009 — 02:14 pm
ecommerce
kio2buy asked:


Just to clear things up a bit, I have my own website where I sell woman’s clothing and gift items.

Content supplied by Yahoo Answers

1 comment » | Small Business

Automated website testing software?

April 26th, 2009 — 06:26 am
shopping cart systems
Russell Z asked:


I am looking for automated website testing software. It is to test a shopping cart checkout system, among other things. The cost of the software is not important.

Content supplied by Yahoo Answers

1 comment » | Software

Upload pictures for homepage, links and other stuff into an OsCommerce web template?

April 24th, 2009 — 04:52 am
oscommerce
mbeck5886 asked:


I have customized a downloadable web template for OsCommerce which I purchased from templatemonster.com. How do I upload this new homepage onto the site. Also, how do I upload product images. Any help is appreciated. Thanks.

Content supplied by Yahoo Answers

2 comments » | Programming Design

what host would you recommend if i wanted an easy estore ecommerce website builder with outstanding templates?

April 23rd, 2009 — 07:58 am
ecommerce
Winnebago asked:


I would like to pay about $20 a month with no set up fee. I have less than 10 products anyway. i want it all in one package along with product options per item. Thanks!

Content supplied by Yahoo Answers

3 comments » | Small Business

What is the best software or script for building an online social network with ecommerce integration?

April 21st, 2009 — 01:33 pm
ecommerce
karl asked:


I would like to build a site that sells my products but also has a full user community.

Content supplied by Yahoo Answers

3 comments » | Programming Design

Ecommerce cart forms (osCommerce, webhosting, etc.)?

April 20th, 2009 — 07:34 am
oscommerce
Jorm asked:


What is a better alternative to use? Also, what are the pros and cons of both? Any advice is appreciated, thanks.

Content supplied by Yahoo Answers

Comment » | Programming Design

Can some please help me convert an asp.net vb code to c#?

April 18th, 2009 — 02:34 pm
shopping cart systems
Ddp asked:


%@ Page debug=true Language=VB ContentType=text/html ResponseEncoding=iso-8859-1 %
html
head
titleShopping Cart/title
script runat=server
Dim objDT As System.Data.DataTable
Dim objDR As System.Data.DataRow

Private Sub Page_Load(s As Object, e As EventArgs)
If Not IsPostBack Then
makeCart()
End If
End Sub

Function makeCart()
objDT = New System.Data.DataTable(Cart)
objDT.Columns.Add(ID, GetType(Integer))
objDT.Columns(ID).AutoIncrement = True
objDT.Columns(ID).AutoIncrementSeed = 1

objDT.Columns.Add(Quantity, GetType(Integer))
objDT.Columns.Add(Product, GetType(String))
objDT.Columns.Add(Cost, GetType(Decimal))

Session(Cart) = objDT
End Function

Sub AddToCart(s As Object, e As EventArgs)
objDT = Session(Cart)
Dim Product = ddlProducts.SelectedItem.Text
Dim blnMatch As Boolean = False

For Each objDR In objDT.Rows
If objDR(Product) = Product Then
objDR(Quantity) += txtQuantity.Text
blnMatch = True
Exit For
End If
Next

If Not blnMatch Then
objDR = objDT.NewRow
objDR(Quantity) = txtQuantity.Text
objDR(Product) = ddlProducts.SelectedItem.Text
objDR(Cost) = Decimal.Parse(ddlProducts.SelectedItem.Value)
objDT.Rows.Add(objDR)
End If
Session(Cart) = objDT

dg.DataSource = objDT
dg.DataBind()

lblTotal.Text = $ GetItemTotal()
End Sub

Function GetItemTotal() As Decimal
Dim intCounter As Integer
Dim decRunningTotal As Decimal

For intCounter = 0 To objDT.Rows.Count – 1
objDR = objDT.Rows(intCounter)
decRunningTotal += (objDR(Cost) * objDR(Quantity))
Next

Return decRunningTotal
End Function

Sub Delete_Item(s As Object, e As DataGridCommandEventArgs)
objDT = Session(Cart)
objDT.Rows(e.Item.ItemIndex).Delete()
Session(Cart) = objDT

dg.DataSource = objDT
dg.DataBind()

lblTotal.Text = $ GetItemTotal()
End Sub
/script

/head
body
form runat=server
Product:br
asp:DropDownList id=ddlProducts runat=server
asp:ListItem Value=4.99Socks/asp:ListItem
asp:ListItem Value=34.99Pants/asp:ListItem
asp:ListItem Value=14.99Shirt/asp:ListItem
asp:ListItem Value=12.99Hat/asp:ListItem
/asp:DropDownListbr
Quantity:br
asp:textbox id=txtQuantity runat=server /brbr
asp:Button id=btnAdd runat=server Text=Add To Cart onClick=AddToCart /brbr
asp:DataGrid id=dg runat=server ondeletecommand=Delete_Item
columns
asp:buttoncolumn buttontype=LinkButton commandname=Delete text=Remove Item /
/columns
/asp:DataGrid
brbr
Total:
asp:Label id=lblTotal runat=server /
/form
/body
/html

Content supplied by Yahoo Answers

1 comment » | Programming Design

hoe exactly does shipping work with ecommerce volusion?

April 18th, 2009 — 12:48 am
ecommerce
shallybabi3 asked:


do you have to package the items your self?
i know you can do dropshipping. but its such a risk to take for your business…one of the biggest decisions you’d have to make for your business.
excuse me guys…i ment how*…lol :)

Content supplied by Yahoo Answers

1 comment » | Small Business

« Previous Entries