Microsoft thinks it has the votes to get Office OpenXML (OOXML), the format of Microsoft Office, approved as an ISO standard. The key, it says, was a decision by the Czech Standards Institute to approve the format.
I got a feeling that there is no compatible way to a) check that when you dynamically load a script, it is loaded, and b) to know that it was not loaded (say, 404); so I feel like it might make sense to use XmlHttpRequest to load scripts actually.
What do you think? (Mil pardons, je ne sais que langue on parle ici...)
The validator works wonderfully. But the client-side validation never fires.
The WebResource correctly gets added to the page as a script include (for which I need to have the following line in my AssemblyInfo.cs, in case you were wondering):
I'm trying to write XHTML to an XmlWriter. I'm having trouble generating the standard line: http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
With "writer" as my XmlWriter I have writer.WriteStartElement("html"); writer.WriteAttributeString("xmlns", "http://www.w3.org/1999/xhtml"); writer.WriteAttributeString("lang", "en"); writer.WriteAttributeString("xml:lang", "en");
I'm trying to access an XML-RPC service from C# that I'm building. I've had absolutely no response from my message on the XML-RPC.net YahooGroup, so I started looking at the only other .Net XML-RPC class library out there: XmlRpcCS, which is only confusing me further.
The cause of my problems appears to be that XML-RPC.Net seems to require all its proxy objects to be structs. I, however, would like to use class objects, so I can add other functionality into the classes (constructors, the ability to have properties that are masked from the XML-RPC output and so on).
Now if this were XML serialisation, I would use the attributes that control XML serialisation, such as [XmlIgnore]. Without rewriting half of the class library, though (which would seem to defeat the purpose of using it!), I can't do something like that.
Does anyone here have any experience of using an XML-RPC library for .Net?
I have an XSL transform that turns an XML document into HTML. There is a div that contains data and scrolls by using CSS: overflow: auto;. When printing or when JavaScript is disabled, I would like to simply display the contents: overflow: visible;. However, tags are only allowed in the header and tags are only allowed in the body. Bugger! Validation aside, Firefox ignores in the tag and includes "noscript.css" anyway.
Here's what I have right now:
This works for printing, but not when JavaScript is disabled.
My next thought was to use JavaScript, something along these lines: