Hi all, If there are no fields on html page just hyperlinks are there,if I want to send some data with hyperlink which is calling a servlet,how can I send it?
You would code your URL's as: ../MyServlet?myParm1=value1&myParm2=value2... Then you can retrive the parameters from within the doGet() of MyServlet. James.