- Lucene home page –> http://lucene.apache.org/
- Download Lucene from –> http://www.apache.org/dyn/closer.cgi/lucene/java/
- Lucene API Doc –> http://lucene.apache.org/java/docs/api/index.html
- Lucene docs for each release –> http://lucene.apache.org/java/docs/
- Where can I get help from –> java-user@lucene.apache.org
- Lucene wiki –> http://wiki.apache.org/lucene-java/FrontPage
- Lucene , how to improve search speed –> http://wiki.apache.org/lucene-java/ImproveSearchingSpeed
- Lucene , how to improve index speed –> http://wiki.apache.org/lucene-java/ImproveIndexingSpeed
- Lucene FAQ –> http://wiki.apache.org/lucene-java/LuceneFAQ
An ATG form is defined by the dsp:form tag, which typically encloses DSP tags that specify form elements, such as dsp:input that provide direct access to Nucleus component properties. Find below a sample dsp:form tag. <dsp:form action="/testPages/showPersonProperties.jsp" method="post" target="_top"> <p>Name: <dsp:input bean="/samples/Person.name" type="text"/> <p>Age: <dsp:input bean="/samples/Person.age" type="text" value="30"/> <p><dsp:input type="submit" bean="/samples/Person.submit"/> value="Click to submit"/> </dsp:form> When the user submits the form, the /samples/Person.name property is set to the value entered in the input field.Unlike standard HTML, which requires the name attribute for most input tags; the name attribute is optional for DSP form element tags. If an input tag omits the n...
Comments
Post a Comment