Hey Hatter!
the code snippet you supplied kinda tells me your working with xsl and asp trying to display something in a browser. the code snippet itself is describing how the html anchor tags will be displayed by default on that page...
if you want i could take a look at your asp page and...
Hey!
XML is a mark-up language not an actual ]programming language. your problem i think, may lie in what ever is interacting with your xml file. what is actualy using that file? a browser? an editor? an application?
Jeff ;)
Hello!
Here is my 2 cents:
if you are looking to stay with a browser or HTML take a closer look at JSP's or Applets. if you are leaning to a more standalone application you could code it directly with java.
Hullo!
Lets see if I can take a stab at this one. The Process java class has three methods that sort of apply to your question - i think. Process.getOutputStream(), Process.getInputStream(), and process.getErrorStream(). These methods will allow you to control the flow of stdout, stdin, and...
<you wrote:>1. Is there any way that i can dynamically apply a DTD to an XML file using ASP?
I am not sure what you mean by dynamically apply but here is my take on it: you can create a dtd right along with the xml file and embed it as an internal dtd, a caution however as this will definatly...
Here is how I would handle your situation as i understand it:
<?xml version="1.0" ?>
<!DOCTYPE testXML [
<!ELEMENT testXML (( x1 | x2 ), x1?, x2? )>
<!ELEMENT x1 (#PCDATA) >
<!ELEMENT x2 (#PCDATA) >
]><testXML>
<x2>some value</x2>
<x1>some other value</x1>
</testXML>
hope this...
I am having trouble stabalizing my simple GUI. when i type on the message line it causes the edge to wiggle. any suggestions? code to follow
/*
* testGUI.java
*
* Created on July 5, 2003, 9:36 PM
*/
import javax.swing.*;
import javax.swing.text.*;
import java.awt.*;
/**
*
* @author...
Hello!
I am trying to understand the best way to tell if a socket connection read operation has timed out. I have include snippets of a much bigger program to best explain my delema.
Do i have to test for an empty array or will the program exit with an error status? or something else all...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.