Is this possible (see <CODE>)? I have a file that depends on the query
string for display. Can I have include files based on that query string
too?
If action=edit show the data in form fields otherwise show it in formatted
text.
When the files are included vs. when the page is compiled and executed (see
<EXCEPTION>). Thanks peops!
<EXCEPTION>
Unable to compile class
'try' without 'catch' or 'finally'
but I dont have any exception handling in the page.
</EXCEPTION>
<CODE>
<%
if(action.equals("edit")){
%>
<%@ include file="includes/edit_staff.jsp"%>
<%
}else{
%>
<%@ include file="includes/view_staff.jsp"%>
<%
}
%>
</CODE>
Kyle Burke