Search found 3 matches

by Zohaib
Sat Jan 23, 2010 4:43 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: The resource cannot be found msg when I run my application
Replies: 1
Views: 1534

The resource cannot be found msg when I run my application

I am Asp.net developer but a newbie on Ablecommerce.I am going to customize Ablecommerce 7 software for someone.He gave me the online address where I could download ACS7 files.I downloaded it and after build it in vs08 deploy it on local IIS5.x. I am using winXP,you know.I have taken care of all the...
by Zohaib
Wed Jan 13, 2010 10:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to use stored procedure
Replies: 3
Views: 3199

Re: How to use stored procedure

string size = "select p1 from ac_CloudSettings where Description='Size'"; CommerceBuilder.Data.Database database = Token.Instance.Database; using (System.Data.Common.DbCommand selectCommand = database.GetSqlStringCommand(size)) { System.Data.DataSet dsDiscountedProducts = (System.Data.DataSet)Token....
by Zohaib
Sun Jan 10, 2010 7:52 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to use stored procedure
Replies: 3
Views: 3199

How to use stored procedure

I have a piece of code string sel="select * from ableco"; SqlCommand command = new SqlCommand("storedprocedureName", con); command.CommandType = CommandType.StoredProcedure; if I do not want to use connection and use a code like this DbCommand selectCommand = Token.Instance.Database.GetSqlStringComm...