Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of a way to select all plain-html <p> elements in an ASP.net page, server-side? In my case, I'd like to apply a bit of text manipulation to all of them before they go to the browser.

I realize that I can add runat=server and then FindControl for each one. But that's a lot of code.

This would be the equivalent of javascript's getElementsByTagName, but server-side.

Thanks!

share|improve this question
I'm wondering WHY you would want to do this !? – Cerebrus May 2 '09 at 8:07
he hates p tags, clearly ;) – Chad Grant May 2 '09 at 8:19
nah, no hate for the p tags. i want to do a bit of typographical stuff, curl the quotes, that kind of thing. it's easy enough for server tags, not so for regular tags. i'm really surprised this isn't built into .Net. – Matt Sherman May 2 '09 at 16:06

2 Answers

you can use browser adapter for page: Just an idea: Derived class from System.Web.UI.Page -> MyPage

You should create BrowserAdapter and override render of this page, in output you will find generated HTML that will go to client browser. In this case you can make some XSLT mutations, or simple XML(XPATH) replacements and in a result you mission will be accomplished :) .

<browsers>
<browser refID="default">
	<controlAdapters>
		<adapter controlType="System.Web.UI.Page"
				 adapterType="yournamespace.TestAdapter" />
	</controlAdapters>
</browser>

public class TestAdapter : PageAdapter
    {
    	protected override void Render(HtmlTextWriter writer)
    	{
    		/* Get page output into string */
    		var sb = new StringBuilder();
    		TextWriter tw = new StringWriter(sb);
    		var htw = new HtmlTextWriter(tw);

    		// Render into my writer
    		base.Render(htw);

    		string page = sb.ToString();

                        // Here you can change output of render

    		writer.Write(page);
    	}
    }
share|improve this answer
might work, have you tested this? But XSLT/XPath is a bit far fetched, html is not xml by a long show, especially the output of server controls :( – Chad Grant May 2 '09 at 8:18
Sure it's working :) I'm not using XSLT usually for this actions. It's best way for pages localization. – omoto May 3 '09 at 10:39

Consider an Http Filter Module by filtering the output of your handlers.

There is no equivalent of document.getElementsByTagName on the server, unless every single p tag was runat=server.

http://msdn.microsoft.com/en-us/magazine/cc301704.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.