J
Jon via DotNetMonster.com
Hi all,
I have a asp.net table control placed on 'Calculator.aspx' page. The table
looks like this:
<div class="roiHTML" id="highAbandonRateSale" runat="server" visible="false"<asp:Table runat="server" ID="HARS_Table" >
<asp:TableRow><asp:TableCell><p>Average weekly Inbound calls offered
=</p></asp:TableCell><asp:TableCell>{INBOUND}</asp:TableCell></asp:TableRow>
<asp:TableRow><asp:TableCell><p>Average weekly abandon rate (%) =</p></asp:
TableCell><asp:TableCell>{ABANDON}</asp:TableCell></asp:TableRow>
</asp:Table>
</div>
In the 'Calculator.aspx.cs' code behind file I am trying to place the content
of the above table into a session object.
At the point I'm trying to do this the table has been created but is just
hidden from site. So I'm thinking something along the lines of:
Session["Session1"] = HARS_Table;
OR
Session["Session1"] = HARS_Table.InnerText;
I am way off in solving this simple task. Can someone please help me?
Thanks in advance.
I have a asp.net table control placed on 'Calculator.aspx' page. The table
looks like this:
<div class="roiHTML" id="highAbandonRateSale" runat="server" visible="false"<asp:Table runat="server" ID="HARS_Table" >
<asp:TableRow><asp:TableCell><p>Average weekly Inbound calls offered
=</p></asp:TableCell><asp:TableCell>{INBOUND}</asp:TableCell></asp:TableRow>
<asp:TableRow><asp:TableCell><p>Average weekly abandon rate (%) =</p></asp:
TableCell><asp:TableCell>{ABANDON}</asp:TableCell></asp:TableRow>
</asp:Table>
</div>
In the 'Calculator.aspx.cs' code behind file I am trying to place the content
of the above table into a session object.
At the point I'm trying to do this the table has been created but is just
hidden from site. So I'm thinking something along the lines of:
Session["Session1"] = HARS_Table;
OR
Session["Session1"] = HARS_Table.InnerText;
I am way off in solving this simple task. Can someone please help me?
Thanks in advance.