all groups > dotnet xml > august 2005 > threads for august 22 - 28, 2005
Filter by week: 1 2 3 4 5
HTML to XML conversion
Posted by GeRmIc at 8/28/2005 10:57:02 PM
Hi,
I'm trying to create a Learning Object Repository to store learning objects
(obviously!). My question is how do I convert HTML pages to XML and then
store them in a database and then generate HTML/XHTML pages on the fly and
display it to the client from the stored XML files.
Help!... more >>
XmlSchemaSet Compile error ?
Posted by Brice Prunier at 8/27/2005 6:44:02 AM
Here under 4 schemas i'm working with ( it may be long: sorry...)
The context is the following :
Resident.xsd imports Person.xsd and includes Common.xsd ( anonimous schema:
no TargetNamespace )
Person.xsd includes Common-Naming.xsd ( anonimous schemas )
Common-Naming.xsd includes common.xsd ( ... more >>
traverse xml document nodes - SelectNodes()
Posted by Stephen at 8/26/2005 11:51:50 AM
I have the following code that uses xquery to return search results
from an xml doc.
dim xmlString as string
xmlString =
"siteMapNode/siteMapNode/siteMapNode/siteMapNode[contains(translate(@title,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),
'" + txtSearchCriteria.Text.ToUpper... more >>
The same table 'All' cannot be the child table of two nested relat
Posted by Vicki at 8/26/2005 7:09:07 AM
Using VS2005 beta 2, I have an xsd provided by a vendor that I want to make
into a strongly typed data set. In VS 2003 the MSDataSetGenerator tool gives
a similar error, which I was told was to be fixed in VS 2005. And in fact
the xsd tool does now correctly process the .xsd and create a .vb... more >>
Making portion of a page anti-spider/bot
Posted by Aaron at 8/26/2005 6:27:37 AM
I wish for this area to be encode so a spider/bot can not capture/scrape
anything useful from the webpage(s). Only someone that renders and loads the
page can see what text is there.
Here is the xslt snippet, it is part of a asp:xml tag:
<table border="0" width="75%">
<xsl:for-each select="En... more >>
Yet another ICollection that doesn't serialize. Anyone see why?
Posted by Lars-Erik Aabech at 8/26/2005 12:00:00 AM
Hi!
I've got problems with serializing my collections of business objects. The
objects themselves serialize fine, but the collections fail. I've got the
following structure:
Base collection class:
Derives MarshalByValueComponent
Implements ICollection, IList and ISerializable
Explicitly... more >>
How to ignore namespace in XMLDocument
Posted by Maziar Aflatoun at 8/25/2005 11:38:42 AM
Hi,
I have this XML file that I need to parse.
<property>
<name>some name</name>
<value>some value</value>
</property>
<report xmlns="http://schemas.site.com/test/test/">
<reportElementList>
<reportElement>
....
....
</reportElement>
</r... more >>
XML into DataSet - How to nav through Data
Posted by K riley at 8/25/2005 10:08:37 AM
Hi. I need some help.
I have an xml file what will contain hundreds of groups and will have an associated xsd.
My overall goal is to have a web application that allows a user to input a groupID from a webform, the application will than find
that groupID in the xml file and display all the r... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Encoding a portion of a file
Posted by Aaron at 8/24/2005 9:43:25 PM
Hello,
I wish to encode this portion of code from a xslt file that is combined with
and xml file for a asp:xml control, code is below.
TIA
Aaron
<table border="0" width="75%">
<xsl:for-each select="Entry">
<xsl:sort select="DateTime" order="descending"/>
<tr>
<td colspan="2"><... more >>
A string literal was expected, but no opening quote character was
Posted by NRao at 8/24/2005 2:18:11 PM
I am trying to display just XML in aspx page. To display only XML I removed
all html tags in aspx page and writing xml using response.write. This works
fine in Dev.Once we move it to production where we use SSL am I am getting 'A
string literal was expected, but no opening quote character was ... more >>
xml to excel
Posted by ganesh_infosys at 8/24/2005 4:19:04 AM
can anybody tell me how to transfer xml data to an excel template (worksheet)
using asp.net ?... more >>
URI formats are not supported
Posted by K riley at 8/23/2005 11:44:59 AM
Hi.
I am trying to use the XslTranfrom object and I am getting an unhandled
expection.
URI formats are not supported
Exception Details: System.ArgumentException: URI formats are not supported.
I am following the example as layed out by Microsoft for C#
http://msdn.microsoft.com/library/de... more >>
Nested schemas
Posted by SideByEach at 8/23/2005 7:23:21 AM
I have a schema that references a child schema via a "xs:import" node.
In that child schema it references several other grand children
schemas. Is there an object in the VS 2K5 suite which will allow me to
consolidate all the nested schemas into one giant schema?
I've tried using the XmlSchema... more >>
XSLT reference?
Posted by Jon Shemitz at 8/22/2005 11:02:10 PM
Once, I happened on a fairly complete set of xsl: language element
docs in VS.2003. I can't find it again - can anyone tell me how to
navigate to it from either the Contents or the Index?
--
www.midnightbeach.com... more >>
XmlReader and recursive descent parsers
Posted by Jon Shemitz at 8/22/2005 4:08:29 PM
I just wrote my second method that reads an XML stream with XmlReader
and spits out a instance of an object that represents the XML stream.
In effect, this was a simple recursive descent parser that uses the
XmlReader as a tokenizer.
Realizing this naturally led to the question: Are there any ... more >>
HTML Output in XSLT
Posted by Fredy Muñoz [MCP] at 8/22/2005 10:29:01 AM
Hello there!
I have a couple of questions about generating HTML using an XSLT Stylesheet.
I use the System.Xml and System.Xml.Xsl namespaces and a XslTransform object
to make the transformation, as follows:
xsltTemplate.Transform(xmlOutput.CreateNavigator, Nothing,
xmlWriter, N... more >>
|