I need to programmatically parse and transform ASP.NET webform pages. It's a requirement that I have =(.
Anyone know any tools or frameworks?
Update:
I just need to modify ASPX pages (not rendered HTML code).
There are no inline c# code.
I need to programmatically parse and transform ASP.NET webform pages. It's a requirement that I have =(.
Anyone know any tools or frameworks?
Update:
I just need to modify ASPX pages (not rendered HTML code).
There are no inline c# code.
If you are parsing the resulting pages of an ASP.Net webform, meaning just HTML, then I'd go for Html Agility Pack and using XSLT for the transformation.
If you need to parse the actual .aspx server side code before it's rendered, then please include more information about what you need to do.