Re: Putting request parameter into page context

2002-11-15 Thread Kris Schneider


Quoting Michael Lee <[EMAIL PROTECTED]>:

> This seems like it would be so simple yet I can't get it to work
> I've tried all kinds of combinations of bean:define...
> 
> I want to take the request parameter startRow and put it in a page object
> startRow
> startRow is in the request (URL.com/someaction.jsp?startRow=10).
> thanks,
> Mike


-- 
Kris Schneider 
D.O.Tech   

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Putting request parameter into page context

2002-11-15 Thread hotmail
I've used scriptlets - but probably not what you're looking for !

<% String eventId = (String)request.getParameter("id"); %>
View Event

- Original Message -
From: "Michael Lee" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, November 15, 2002 10:49 AM
Subject: Putting request parameter into page context


This seems like it would be so simple yet I can't get it to work
I've tried all kinds of combinations of bean:define...

I want to take the request parameter startRow and put it in a page object
startRow
startRow is in the request (URL.com/someaction.jsp?startRow=10).
thanks,
Mike

--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




Putting request parameter into page context

2002-11-15 Thread Michael Lee
This seems like it would be so simple yet I can't get it to work
I've tried all kinds of combinations of bean:define...

I want to take the request parameter startRow and put it in a page object startRow
startRow is in the request (URL.com/someaction.jsp?startRow=10).
thanks,
Mike