Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by qberta1

  1. qberta1

    Manipulate Excel data and Export into SQL Table

    I have an Excel spreadsheet with several tabs. I am able to pull the data from the different tabs into ASP.NET and manipulate its content into one uniform DataTable. Now I need to take this data and insert it all into a SQL table. Is there any easy way of taking Excel data and inserting it all...
  2. qberta1

    Duplicates in DataList ????????????????????????

    You know this was driving me just about insane. The problem was with the proc. I had it as follows: exec CMRC_GetPriceRange Select c.ProductID, c.ModelName, UnitCost, c.ProductImage from CMRC_Products c Left Join PriceRange p ON c.ProductID = p.ProductID WHERE c.CategoryID =...
  3. qberta1

    Duplicates in DataList ????????????????????????

    Okay The Code: <%@ OutputCache Duration="6000" VaryByParam="CategoryID" %> <%@ Register TagPrefix="ASPNETCommerce" TagName="Header" Src="_Header.ascx" %> <%@ Register TagPrefix="ASPNETCommerce" TagName="Menu" Src="_Menu.ascx" %> <%@ Page Language="vb" EnableViewState="false"...
  4. qberta1

    Duplicates in DataList ????????????????????????

    Hello, I created a datalist and populate it with products from a proc. Problem is that when I run the application it lists the same product multiple times. I have checked the proc and it does not render duplicates. I cannot figure out why the datalist repeats the products. It used to work when...

Part and Inventory Search

Back
Top