How to write expression tag inside the Scriptlet in JSP. I want to export data to Excel sheet. I wrote the fallowing statement to JSP
<% response.addHeader("Content-Disposition","attachment;filename=title.xls"); %>
here i m writing exported file name as 'title', here i want to change file name. so i write like
<% String report=label.getLable('rep'); %>
How can i use 'report' variable in JSP Scrptlet ?
Thanks