Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
971 views

Output asp.net masterpage webform to html email

Hi I'm having a bit of a nightmare here! I'mv trying output a webform to html using page.rendercontrol and htmltextwriter but it is resulting in a blank email. Code: StringBuilder sb = new ...
3
votes
2answers
518 views

WebPart RenderControl doesn't render contents

I have a custom web part that I am trying to call the RenderContents method on, but the results only contains the surrounding div for the web part, and not any child controls. Take for example this ...
3
votes
2answers
270 views

ASP.NET MVC: How can I render a Control to a Stream?

So I'm rendering a partial view in memory in order to direct the XSL-FO data in the view to a PDF renderer. The PDF renderer can take a string, XmlDocument or Stream as input. Here is what I'd like ...
2
votes
1answer
272 views

Add stylesheet link to dynamically created page object

I'm creating a Page object and adding a control to it for printing purposes. The code works, however I can not find a way to add a stylesheet link to the header. In the code I pasted I'm trying to ...
1
vote
0answers
32 views

ASP.NET Get Page control collection at design-time

Whilst trying to capture the HTML from a Web.UI.Page at design-time (in a UITypeEditor) using the RenderControl method, I noticed that only server controls were being rendered. So, given this aspx ...
1
vote
1answer
182 views

Can RenderControl output WebControl markup instead of HTML markup?

I would like to leverage the asp.net WebControl classes (TextBox, CheckBoxList, Button, etc) to build a string that can be parsed into a Control using TemplateControl.ParseControl(). I am using the ...
1
vote
2answers
650 views

How to add css style/class to a HtmlTextWriterTag.Td dynamically in .net?

I have the following c# code in my control's RenderContents method. How can I add the style/class that is in external css file? output.AddAttribute(HtmlTextWriterAttribute.Border, "0"); ...
1
vote
0answers
249 views

RenderControl - src property is wiped after RenderControl is called with HtmlImage

After I call RenderControl on a HtmlImage, the src property gets wiped e.g. public class Class1 { public static void Main(string[] args) { HtmlImage img = new ...
0
votes
1answer
348 views

RegisterForEventValidation can only be called during Render

I have a webmethod which will be called from jquery ajax: [WebMethod] public string TestMethod(string param1, string param2) { StringBuilder b = new StringBuilder(); HtmlTextWriter h = new ...
0
votes
1answer
290 views

Render Control to Html Produces a different string

I am trying to render a hyperlink to html. ( etc) When the page loads it works fine. (and lots 10 links) on the update panel it hits the same function and tries to get another 10 links. I set the ...
0
votes
1answer
639 views

Asp.net RenderControl method not rendering autopostback for dropdownlist

i am bit confused as to why asp.net does not render a dropdownlist with the autopostback property set to true when using the RenderControl method. eg Dim sw As New IO.StringWriter Dim tw As New ...
0
votes
2answers
1k views

ASP.NET RenderControl or RenderChildren fail

I need to use objChildControl.RenderControl or objControl.RenderChildren to manually render my child controls. But it looks like these methods are incomplete. All my child controls use the ...