Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Input value in XSL

Status
Not open for further replies.

hbari

Programmer
Oct 14, 2002
4
CA
Ji There,
Just a quick question, how to get xml coded value under select="ComputerType/HomeCase" (price) value into xsl to generate a form. input box... Any Idea? Also if there is no input attribute in xml can I still use input tag in xsl to generate input box?

.hamid
 
Hi, hbari,
you get what you code ...

If you want to have a form in xsl --> html then do
<form name=&quot;myForm&quot; action=&quot;whatever&quot;>
<input type=&quot;text&quot; name=&quot;price&quot; value=&quot;{ComputerType/HomeCase/price}&quot;/>
</form>

It is only HTML with a little bit XSL / XPath in it.

--
Thomas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top