Mendy,
I came across this example in Marty Hall's book where the 'repts' atribute could be null if the user doesn't send from browser. Please take a look at. The 'RepeatTag.java' file's setReps method works intelligently when the incoming arg is null.
He just uses this HttpRequest object inside tag.
<csajsp:repeat reps='<%= request.getParameter("repeats") %>'>
To simulate null value to this attribute , don't pass any 'reps' parameter from the browser url.
Just
http://localhost/yourappln/RepeatTag.jsp will do!
To pass some val
http://localhost/yourappln/RepeatTag.jsp?reps=10 regds
maha anna
[This message has been edited by maha anna (edited March 30, 2001).]