0
votes
ASP.NET, XSLT and dynamic controls
I don't know of any easy way to do it, but there are a few systems out there which generate the aspnet markup on the fly then send it to the aspnet runtime from a memory stream (or similar …
1
vote
Modify XML document inside the browser
You can load and modify xml in browser, but writing the file back is a different thing.
I don't know of any feasible way of writing data back to a server without some kind of server side …
0
votes
ASP.NET - controls generated by xslt transformation
Could be tricky with a pure XSL solution.
You might be able to call a template which iterates the xml nodes you are using generate the controls, and writes out a c#/VB script block which …
0
votes
LINQ or XSLT to turn one Element into another in Visual Basic 9
Are you looking for something like this:
<xsl:template match="Tag">
<xsl:element name="Genre">
<xsl:value-of select="@Name"/>
</xsl:el …
1
vote
How would I dynamically add a new XML node based on the values of other nodes?
I would probably use the XmlDocument class in .net, but that's just me because I've never been that fond of regexs.
You could then use XPath expressions to pull out the child nodes of ea …
1
vote
How do *you* use XML within the world of web applications?
Unfortunately, I can't give you any real data for business/legal reasons.
In my experience, xml has been the standard format for 90+% of back end, server to server communications that I h …
0
votes
How to return XML in ASP.net?
Seems like at least 10 questions rolled into one here, a couple points.
Response.Clear - it really depends on what else is going on in the app - if you have httpmodules early in the pipe …
0
votes
How much is too much data for and XML file, and what are some file based database alternatives?
Another handy option, although not free, is VistaDB.
Has good compatiblity with T-SQL (if SQL server might be an issue for you down the trac …
