Oct 13, 2008 #1 zhshqzyc Programmer Joined Jan 21, 2006 Messages 13 Location US Hello, Newbin question. The following code doesn't have the end tag for APPROVAL? Is it okay? <APPROVALS> <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3" /> </APPROVALS>
Hello, Newbin question. The following code doesn't have the end tag for APPROVAL? Is it okay? <APPROVALS> <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3" /> </APPROVALS>
Oct 13, 2008 #2 harebrain MIS Joined Feb 27, 2003 Messages 1,146 Location US Actually, it does have the "short-hand" version of an end tag for an empty element. Code: <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3" [red]/[/red]> is the same as Code: <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3">[red]</APPROVAL>[/red] Upvote 0 Downvote
Actually, it does have the "short-hand" version of an end tag for an empty element. Code: <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3" [red]/[/red]> is the same as Code: <APPROVAL ApproverID="3111" FunctionID="1002" ApplID="3">[red]</APPROVAL>[/red]