Tagged Questions
The htmltextwriter tag has no wiki summary.
8
votes
5answers
2k views
Fluent interface for rendering HTML
Rendering HTML with the HtmlTextWriter isn't incredibly intuitive in my opinion, but if you're implementing web controls in web forms it's what you have to work with. I thought that it might be ...
4
votes
4answers
6k views
Are there any benefits to using HtmlTextWriter if you are not going to benefit from adaptive rendering?
Outside of benefiting from Adaptive Rendering for alternate devices, does it ever make sense to write all of this code:
writer.WriteBeginTag("table");
writer.WriteBeginTag("tr");
...
3
votes
2answers
986 views
Using HtmlTextWriter in ASP.NET MVC
I am migrating some old code where HtmlTextWriter is used extensively to render UI elements.
I am migrating the code to use ASP.NET MVC 1.0. As far as I am aware, I am not using any of the ...
3
votes
1answer
182 views
Is it possible to add an attribute to HtmlTextWriter WriteBreak
Is it possible to add a class to a br tag when using the HtmlTextWriter.WriteBreak method?
writer.AddAttribute(HtmlTextWriterAttribute.Class, "className");
writer.WriteBreak();
I need an xHtml ...
3
votes
3answers
4k views
Using HtmlTextWriter to Render Server Controls?
I'm writing the RenderContents() method of my ASP.NET server control. The method uses an HtmlTextWriter object to render the output content. For the control I'm writing, using the HtmlTextWriter's ...
2
votes
8answers
359 views
Creating and showing dynamic error messages (Not working inside UpdatePanel)
My web forms inherits a class called MyPageMain, which inhertis System.Web.UI.Page and is located on the App_Code folder.
In this MyPageMain class I created this method, to record and output ...
2
votes
3answers
415 views
Ensuring unique ID attribute for elements within ScriptControl
I'm creating a control based on ScriptControl, and I'm overriding the Render method like this:
protected override void Render(HtmlTextWriter writer)
{
RenderBeginTag(writer);
...
1
vote
3answers
80 views
Rendering HTML from List property in Web Part
I am trying to read some values from a SharePoint List and render them in my page as HTML. However, it literally shows the HTML tags on the Web Part page and fails to render it.
protected override ...
1
vote
3answers
183 views
C# generated dynamic controls not displaying
I have the following C# code on one of my pages:
protected override void Render(HtmlTextWriter writer)
{
//an array named fieldNames is delcared here
writer.Write("<form ...
1
vote
3answers
155 views
HtmlTextWriter doesn't flush upon disposal?
I need to write some text with style (like color, fonts) so I decided to use html. I found that HtmlTextWriter is a class used for writing html file. However, I found that I must manually close or ...
1
vote
3answers
301 views
How can I create spacing and indents using HTMLTextWriter?
I would like to ask how do I create a spacing and indent using HTMLTextWriter.
So far, I have tried using the html.writeline(); but it does not work. Can someone advise me on the codes? Thanks.
Here ...
1
vote
2answers
1k views
Converting contents of HtmlTextWriter to a string
I have a third party tool that creates an img tag through code using HtmlTextWriter's RenderBeginTag, RenderEndTag & AddAttribute methods. I want to get the resulting HTML into a string.
I tried ...
1
vote
2answers
349 views
getting HtmlTextWriter of a control
is it possible to get HtmlTextWriter of a control?
if no, then how can i call the RenderEndTag of a control in code behind?
i am facing a problem in my application. i extended the listbox user ...
1
vote
2answers
896 views
Use ASP.Net server control code generation from .ashx
I'm trying to take an existing bunch of code that was previously on a full .aspx page, and do the same stuff in a .ashx handler.
The code created an HtmlTable object, added rows and cells to those ...
1
vote
1answer
144 views
Which is more efficient for rendering a server control in ASP.NET
I am outputting the entire HTML for my server control as follows:
public override void Render(HtmlTextWriter output)
{
output.Write(myStringBuilder.ToString());
}
myStringBuilder is a ...
1
vote
8answers
759 views
C# - object-oriented way of writing HTML as a string?
I'm trying to programmatically send an email of all of the dll files and their versions in a directory, recursively. I'd like to send the email as HTML output, using a table. Is there a good ...
1
vote
1answer
1k views
ASP.NET - Rendering Gridview to HtmlTextWriter - XLS - Column Format
I'm using the following code to render a gridview to an XLS file on an ASPX page:
Private Sub ExportGridviewToExcel()
Dim attachment As String = "attachment; filename=ItemSizeExport.xls"
...
0
votes
1answer
38 views
How to use StringWriter and HtmlWriter together without Code Analysis warnings
I'm using .net and need to get some html text, so I thought I would use the HtmlTextWriter and StringWriter together to get the well-formed html. But despite all the different ways I write the code I ...
0
votes
2answers
96 views
How to write some text to an excel file in c#
I am adding the grid table to the excel and adding a header to the excel.
string subject = lbl_Subj.Text;
Response.Clear();
Response.Buffer = true;
Response.ClearHeaders();
...
0
votes
1answer
55 views
HTMLTextWriter to render elements in the middle of the page
Using asp .net and C# I've managed to use a HTMLTextWriter in my override Render method to render two divs. But they appear at the end of the page, how can I choose where to render these divs if I ...
0
votes
1answer
46 views
Writing html with HTMLTextWriter in irregular order
I generate a html page with HTMLTextWriter. At one point I do need some information, which I haven't yet. I will get them later. It is not possible to workaround and to get the information earlier.
...
0
votes
2answers
112 views
Calculate height of a HTML-Table generated by HtmlTextWriter (C#)
I generate a HTML-Page from C#. In the HTML-Page there are a lot of elements. All of them have a absolute position.
One of these elements is a table. This table represents a object that keeps a ...
0
votes
1answer
110 views
HtmlTextWriter solution being added as a WebControl
I have a solution that works, yet it doesn't meet the QA requirements from the customer. Problem is I can't control the location of the WebControls, they need to be relative to a chart that is above ...
0
votes
0answers
137 views
Rewriting image src url using HtmlTextWriter
I am interested in rewriting the output of all my pages to replace the image src url with the url to my CDN subdomain. I got as far as the following, perhaps someone can tell me if I'm on the right ...
0
votes
1answer
213 views
Is there any problem with mixing WriteBeginTag and RenderBeginTag in the same code?
I am generating XHTML for a non-standard browser (Polycom Microbrowser). I would like to use the XhtmlTextWriter, but it ignores the border attribute on table. This is mostly like the correct thing ...
0
votes
1answer
249 views
Curing HtmlTextWriter's Ugly Formatting?
I'm creating an ASP.NET server control using the HtmlTextWriter class. My understanding is that it's a nice class to use for making sure my output HTML is valid. I assumed it would format things ...
0
votes
1answer
154 views
Fire server event from client
I am having trouble with the Asp.net page life cycle. I am trying to create a custom menu using HtmlTextWriter with an asp.net LinkButton to fire a server event. I can not get the server event to ...
0
votes
1answer
718 views
How to add attributes correctly upon rendering with a HtmlTextWriter?
I want to add the href attribute to a link element. This is my code:
System.Text.StringBuilder stringBuilder = new System.Text.StringBuilder();
using (System.IO.StringWriter stringWriter = new ...
0
votes
1answer
463 views
In ASP.NET 2.0 how do I remove the extra tabs and line breaks from the rendered page/control output?
I have been researching this one for awhile. I found several resources on the subject and they all tend to use the same approach - override Page.Render, use the HtmlTextWriter to convert the output ...
0
votes
2answers
535 views
Alternatives to HtmlTextWriter in a System.Web.UI.Control?
Can you use FluentHTML or other alternatives in an web application user control?
Can you put a markup file in a System.Web.UI.Control like the System.Web.UI.UserControl but without the burden of the ...
0
votes
1answer
730 views
Broken htmlText in Actionscript 3.0 - funky display from incremented display using string.substring
This is an issue with textField.htmlText in actionScript 3.0 and the class I'm making for it.
In an attempt not to post my whole class, I've managed to boil down the problem to what seems like a ...
0
votes
2answers
260 views
C# and writing HTML - best way?
I would need to build a HTML document from plain text and display it in webBrowser. I was thinking of better way - I can see there is HTMLTextWriter in System.Web.UI but I cannot reference this ...
0
votes
4answers
3k views
asp:button Created Programmatically: EventHandler does not fire
I am writing a SharePoint web part which will have a simple ASP.NET form. I am using HtmlTextWriter to render the controls. The problem I have is that my button does not seem to be triggering the ...
0
votes
2answers
285 views
Exception safety/handling with .Net HtmlTextWriter?
I am using a .Net HtmlTextWriter to generate HTML.
try
{
htw.RenderBeginTag( HtmlTextWriterTag.Span );
htw.Write(myObject.GenerateHtml());
htw.RenderEndTag( );
}
catch (Exception e)
{
...