| Thread | Last Post | Replies |
|
| selectNodes, contains and whole words | 08 Jan 2004 11:17 GMT | 4 |
Hey all, I have the following code to get a set of nodes containing a certain search criteria: theSearchTermsXML.selectNodes("/Table/Row/Cell[contains(Data, 'mysearch')]")
|
| Helper classes for dealing with XML Names | 07 Jan 2004 12:55 GMT | 2 |
Does the .NET Framework have and helper classes that will help my code generate and/or validate XML Names or NCNames? From the spec: NCName::= (Letter | '_') (NCNameChar)* /* An XML Name, minus the ":" */
|
| Writing to XML | 07 Jan 2004 12:29 GMT | 1 |
I have a small problem in writing XML file from VB.net. I am trying to write the XML file using dataset. I am able to write the XML in sequential way(one node after other). I can write in the hierarchial(tree) structure also but only by using datagrid.
|
| Get Xml attribute | 07 Jan 2004 08:37 GMT | 5 |
<xml> <test attrib1="hello" attrib2="world">textValue</test> </xml> I need some help getting the values of attrib1, attrib2 and the test tag.
|
| XML file width | 07 Jan 2004 06:51 GMT | 1 |
I'm converting a 1MB bitmap file into base64 encoding..and saving into an xml file. the xml file and everything works perfectly...except when i open the xml file in a viewer I get errors becuase the
|
| How to serialize correct XML headers | 07 Jan 2004 04:18 GMT | 1 |
All, I am trying to generate the following header when serializing a class to XML <FpML
|
| DataView from XML | 06 Jan 2004 19:32 GMT | 3 |
I have an XML doc that has an element called date. This has a date in the following format "1/6/2004". I am using a filter sting such as "date > myDate" myDate is in the same format and is a date datatype. Everything worked
|
| Example needed: simple XML file and parsing | 06 Jan 2004 17:15 GMT | 3 |
A dropdownlist in my ASP.NET webform needs to be populated from values taken from an XML file. Can someone provide a (simple) sample XML file and a parsing routine using VB.NET? The values could be something like:
|
| Converting an object into an XmlNode | 06 Jan 2004 15:00 GMT | 3 |
Is there a clean way to build up an XML Node from an object? What I am presently doing to create the node is: 1. Create a StringWriter and then use XmlSerializer to
|
| How do you add event handlers for controls generated with xsl? | 06 Jan 2004 13:47 GMT | 1 |
For ASP.Net/C Sharp I have an XML file and an associated XSL file. I am using the System.Web.UI.Controls.Xml control to render the resulting HTML. This seems to work fine with one slight drawback. I cannot seem to find a
|
| XML Schema Problem | 06 Jan 2004 12:52 GMT | 4 |
Folks, I need to create a schema for legacy xml data where the sequence of child elements is part of the semantics. The problem is that I have no succeeded in creating a
|
| Howto : Add XmlSchemaElement to XmlSchemaComplexType | 06 Jan 2004 12:22 GMT | 1 |
I am generating an XML schema for the use in Biztalk 2004. Everything works, except for one simple thing. I cannot add XmlSchemaElements to a XmlSchemaComplexType. This is necessary for the use of subrecords (nested elements, like the SubRecord1 element in
|
| XmlTextReader fails on reading DOCTYPE? | 05 Jan 2004 15:36 GMT | 3 |
I am hoping someone on this list can shed some light on the below issue for me. I am using XmlTextReader to read from an XML file. Unfortunately, an exception is thrown ("Index was outside the bounds of the array.") when the
|
| Back Button on asp.net pages | 05 Jan 2004 13:18 GMT | 2 |
I'm building a site and there is a series of asp.net pages with forms on them. My client would like back buttons placed on each page. Currently I just have some javascript code sending you back to the last page. When I click it I
|
| Matching numeric values in XPath | 05 Jan 2004 13:01 GMT | 2 |
I use Xpath to retrieve nodes in a document like : doc.SelectSingleNode("/properties/layer[@width='0.2']"); - however this is not very robust as I'm only query on text. What if width='0.200' instead of width='0.2', then
|