Possible Duplicate:
Add an attribute with static value with xslt
I have an XML file which I need to modify.
For example:
Say my XML has a form tag <FORM name=""></FORM>
Now say I want to put some extra info to this tag like
frame="frmName" frameby="name"
Expected result of running batch file OR some XSLT
<FORM name="" frame="frmName" frameby="name" ></FORM>
How can I do it using batch file?
I am just a beginner so please try to be simple.
Thank you all