java - sending single parameter through servlet -


how send single parameter through query string in servlet? following code giving me asyntax error:

out.println("\n<a href='delete?index=" +  '">delete</a>"); 

corrected:

  out.println("\n<a href='delete?index=" +  +"'>delete</a>"); 

Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -