I was faced with a similar problem and overcame it by going for a href with the 
relevant fields passed as parameters.

Here's the code I used

<a>
<xsl:attribute name="HREF">
Edit.jsp?id=<xsl:value-of select="@id"/>&amp;title=<xsl:value-of 
select="title"/>&amp;description=<xsl:value-of 
select="description"/>&amp;urls=<xsl:value-of 
select="urls"/>&amp;category=<xsl:value-of select="category"/>
</xsl:attribute>
<img src="edit.gif"/>
</a>
<a >
<xsl:attribute name="HREF">
Delete.jsp?id=<xsl:value-of select="@id"/>&amp;title=<xsl:value-of 
select="title"/>&amp;description=<xsl:value-of 
select="description"/>&amp;urls=<xsl:value-of 
select="urls"/>&amp;category=<xsl:value-of select="category"/>
</xsl:attribute>
<img src="delete.gif"/>
</a>

That worked just fine

Do get back if u need any further clarifications

Priya
------------- Original Message --------------
Raj S <[EMAIL PROTECTED]> wrote:
To:[EMAIL PROTECTED]
From:Raj S <[EMAIL PROTECTED]>
Date:Thu, 21 Sep 2000 05:59:17 GMT
Subject: Display data in editable mode

Hi,
    How can display data in editable mode?I have a table,where at the end of
each row,there is a delete and modify option.When I select modify,it gets
forwarded to next JSP,with the relevant fields.
But how can I display this data in editable mode,so that the user can change
it and save it.


Thanks in advance,
Raj

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at
http://profiles.msn.com.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

_________________________________________________
Get Your Free Email At, http://www.rediffmail.com

For fabulous shopping deals visit: http://www.rediff.co.in/shopping/index.html

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to