So far I know we have LiteralControl and PlaceHolder that we can use to add controls to ASP.NET page dynamically at run time.
To add html code to LiteralControl we use
LiteralControl.Text = "Some HTML/Text"
and for PlaceHolder we use
PlaceHolder.Controls.Add(new LiteralControl("Some HTML/Text"))
I'm looking for a component that I can write to it like what I do with Response.Write(...) but I need it to write in a designated place in page. I need to call this many times to send small chunks of html code to output to save memory.
So the component usage will be something like this:
in aspx page I'll put:
<body>
...
<div>
<asp:componentName ID="SomeComp" runat="server" />
</div>
...
</body>
And in my code behind, I'll use this (Imagine a big number for SetCount):
for (int i;i<SetCount;i++){
SomeComp.Write("Some Text/HTML Code");
}
While(Read.Read()){
SomeComp.Write("Some More Text/HTML Code");
}
FYI Adding to strings in DOT.NET is very slow so LiteralControl is not a good choice.
Creating an StringBuilder and using
LiteralControl.Text = StringBuilder.ToString()
is not an option because it keeps all string in memory until you assign it to control and dispose it.
PlaceHolder.Controls.Add(new LiteralControl("Some HTML/Text"))
is not an option because it creates one LiteralControl for each chunk of html I add to it and again it uses lots of memory that for me is limited.
My Intranet Website has about 500 Calls for same page in a second and it generates a huge spike in memory use that makes IIS stop responding to requests for other applications.
LiteralControlis fast but its input is string and Adding to that output is string+. I'm sure you knowDOT.NETis very slow handling strings. The Case that I'm looking is LiteralControl.Append('Some HTML/Text') that writes directly to designated area in page. – BobSort Jan 15 '12 at 4:08StringBuilderandStringand second link compares different method of writing to HTTP Buffer – Bistro Jan 15 '12 at 4:42StringBuilderon the other hand, only keeps the address for each chunk of string in memory and whenToString()method is used it reads each memory location and concatenate them all at once. no freeing memory will happen untilStringBuilderis disposed – BobSort Jan 15 '12 at 4:50