Ask a Question related to ASP.NET General, Design and Development.
-
Rick Walsh #1
Re: dynamically creating table
Place the content you create into a placeholder i.e.
<asp:placeholder id="someid" runat="server" />
and in your page_load reference the place holder
Rick
"suzy" <me@nospam.com> wrote in message
news:%23xDy2z4RDHA.2236@tk2msftngp13.phx.gbl...the> i have 2 questions...
>
> i have a page where the top half is hyperlinks and the bottom half is a
> table containing text (the text depends on which hyperlink you click onof> top half).
>
> if the table of text is read-only, would there ever be a need to make it a
> server side table.
>
> secondly, i have some code which dynamically creates a table (i haven't
> dragged a table control onto my page). My code is in the page_load eventsource).> my aspx. the code works but when i run the page, the table appears after
> the closed HTML tag, so it doesn't appear on the page (only in the>
> where do i need to put the code that generates the table in my aspx page?
>
>
Rick Walsh Guest
-
dynamically creating charts
i am trying to dynamically create a chart but it isn't working. can someone look at my code and tell me what i am doing wrong. private function... -
dynamically creating pie chart
I have a format that we use to create pie charts and i would like to create a tool to generate the chart in the format we want just by passing 3... -
Dynamically creating CSS
I have a User Control (.ascx & .ascx.vb) for which I need to dynamically specify certain CSS stylesheet properties. Because the controls that I use... -
Creating a Database Dynamically
Is there a way to create an access database or table dynamically? -
Dynamically Creating Variables
Hello, I have a chunk of code that executes six statement handles from the DBI module as follows: $sth1->execute; $sth2->execute;... -
Todd Thompson #2
Re: dynamically creating table
Try this
// may need to replace Form1 below with whatever you call your form
Control form = this.Page.FindControl("Form1");
form.Controls.Add(yourDynamicallyGeneratedTable);
HTH,
Todd Thompson
Todd Thompson Guest



Reply With Quote

