Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6929415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:18:55+00:00 2026-05-27T11:18:55+00:00

I’ve got a DetailsView which has some static fields defined in my markup and

  • 0

I’ve got a DetailsView which has some static fields defined in my markup and adds some extra fields dynamically in the VB codebehind. It should be noted that the DetailsView lives in an UpdatePanel.

Assume that I would like to get inventory information for a number of warehouses, but I only want to see those which have stock on hand. In addition I have some static information such as product, sku, etc.

The problem I was having was that every time I clicked the “Details” button it would just keep appending the dynamic fields to the end and never re-rendering the table. I figure I either need a conditional or to tell it to re-render somehow. I suspect this problem arises from my use of the UpdatePanel but it’s important for the user experience of my customer to keep this.

'Warehouse Stock by Location
Dim stockDT As New DataTable
For Each row As DataRow In stockDT.Rows 'Add column for each Warehouse that has stock
    'Adds the fields to the DetailsView dynamically for Warehouses with stock.
    Dim col As New DataColumn(WarehouseLocID + row(WarehouseLocID).ToString)
    Dim bf As New BoundField
    bf.HeaderText = "Warehouse " + row(WarehouseLocID)
    bf.DataField = col.ColumnName

    'NEED HELP HERE! HOW TO UPDATE OR RE-CREATE THE DETAILSVIEW TO REFLECT NEW INFO?
    If Not SAPDetailsView.HasControls Then 'BROKEN
        SAPDetailsView.Fields.Add(bf)
    Else
        SAPDetailsView.Fields.Item(0).HeaderText = bf.DataField 'UPDATES THE WRONG "ITEM" FIELD VALUE!!
    End If
Next

Here’s the very basic markup.

<asp:UpdatePanel ID="statusUpdatePanel" runat="server">
<ContentTemplate>
    <asp:GridView ID="ProductsTable" DataSourceID="ProductsSDS">
        <Columns>
            <asp:ButtonField ButtonType="Button" Text="Details" CommandName="Select" />
        </Columns>
    </asp:GridView>
    <asp:DetailsView ID="WarehouseStock" runat="server" AutoGenerateRows="False">
        <Fields>
            <asp:BoundField HeaderText="Product" DataField="Product" />
            <asp:BoundField HeaderText="Unit Price" DataField="UnitPrice" />
            <asp:BoundField HeaderText="SKU" DataField="SKU" />
        </Fields>
    </asp:DetailsView>
    <!-- The Dynamic Fields are appended in the codebehind -->
</ContentTemplate>
</asp:UpdatePanel>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:18:56+00:00Added an answer on May 27, 2026 at 11:18 am

    Based on your logic, my guess is that you are not clearing SAPDetailsView prior to updating it with new data. Also note that dynamically added fields usually need to be added in the page_init event in order to survive postback.

    If you are just sending the fields to the user and not expecting any data back, then this won’t matter, but you also won’t get any fields posted back.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
i got an object with contents of html markup in it, for example: string
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.