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 Shaun E 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 Soteriologist

  1. Soteriologist

    VB: Datatable either not saving data or data is being reset

    Well... Since I can't edit previous posts. There's a correction that needs to be made to my previous reply (NOT MY ORIGINAL POST... but my reply). The codebehind had a bad line in it. Everthing else still applies. Here's the proper VB.NET code: Imports System.Data Imports...
  2. Soteriologist

    VB: Datatable either not saving data or data is being reset

    Someone from another forum was suspicious that it was the dynamic controls causing the problem. But I've worked a lot with dynamic controls and everything with how I built them seemed to be working fine. He gave a good suggestion though and so I've rebuilt the page with static controls to do...
  3. Soteriologist

    VB: Datatable either not saving data or data is being reset

    I have a datatable that I'm trying to use for storing a matchup between two columns of dynamic controls (a span holding data on the left is matched up to choices from dropdownlists on the right). I want the datable to save and store the data between postbacks but it seems to be...
  4. Soteriologist

    Select most recently edited item AND type if another doesn't exist

    Here's what a few rows look like: [AddressID] [LocationID] [Type] [Edit Date] 1 11111 Mail 4/29/2006 3:09:24 PM 2 44444 Physical 7/2/2007 6:10:03 PM 3 11111 Physical 9/3/2007 7:05:20 PM 4...
  5. Soteriologist

    Select most recently edited item AND type if another doesn't exist

    Also, there is an [AddressID] [int] column AddressID is a primary-key non-null column to the address table and the LocationID is a foreign key value from a seperate Companies table. So there will be multiple addresses to one LocationID, but each address will have it's own AddressID
  6. Soteriologist

    Select most recently edited item AND type if another doesn't exist

    I've got a big problem that I'm trying to figure out: I have an address table out-of-which I am trying to select mailing addresses for companies UNLESS a mailing address doesn't exist; then I want to select the physical addresses for that company. If I get multiple mailing or physical addresses...
  7. Soteriologist

    Data Paging BLL Return Value Help

    Right under my nose... I was trying to pass totalRows as just a value (ByVal) instead of by reference (ByRef).
  8. Soteriologist

    Data Paging BLL Return Value Help

    In Scott Guthrie's article titled “Efficient Data Paging with the ASP.NET 2.0 DataList Control and ObjectDataSource” he returns his total rows in the same SPROC as his rows of data. He suggests this as a performance optimization and so I’m trying to utilize it. But In his example his...
  9. Soteriologist

    Writing SQL to XML

    I'm trying to convert some sql data to xml with some visual basic code-behind... but it's not working. When I fire off the page it just flashes and stays blank. It doesn't display at all my label I tell it to when the code is finished. Right now I'm firing it off whent he page loads just to...

Part and Inventory Search

Back
Top