This is a pretty first level error in java....
You have defined the variable name,add....etc... in the upper block & variables in once block are not accessible in the outside block.......
When you are trying to access them outside their scope .....compiler is unable to find them & thus the error that can not resolve symbol name, add.......
Error is in the lines
<input type = "text" name = "name" value= "<%= name%>"
<input type = "text" name = "add" value= "<%= add%>"
You can't access name & add variable here........
[ January 05, 2006: Message edited by: vibhu garg ]