RE: FW: ASP.NET - similar to Struts?

2002-09-05 Thread Joe Barefoot
To: Struts Users Mailing List Subject: Re: FW: ASP.NET - similar to Struts? I think what neal was saying is: In ASP.NET, the controllers (C#) *push* the data into the custom tags while in Struts/JSP, the taglibs *pull* data from the request context. In actually fact, this push vs

Re: FW: ASP.NET - similar to Struts?

2002-09-04 Thread Ted Husted
If I understand the question properly, we also consider it good practice to have the control layer set the values before forwarding to the presentation page. In Struts, the control layer is most often represented by the Action. We encourage people to always link to an Action first before

RE: FW: ASP.NET - similar to Struts?

2002-09-04 Thread Brandon Goodin
ted have you looked at http://www.waferproject.org/index.html a project to do exactly what you are saying. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 3:16 PM To: Struts Users Mailing List Subject: Re: FW: ASP.NET - similar

RE: FW: ASP.NET - similar to Struts?

2002-09-04 Thread neal
Hey cool! :) -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 2:24 PM To: Struts Users Mailing List Subject: RE: FW: ASP.NET - similar to Struts? ted have you looked at http://www.waferproject.org/index.html a project to do

Re: FW: ASP.NET - similar to Struts?

2002-09-04 Thread John Yu
I think what neal was saying is: In ASP.NET, the controllers (C#) *push* the data into the custom tags while in Struts/JSP, the taglibs *pull* data from the request context. In actually fact, this push vs pull comparison is not that clear cut. In both cases, both push and pull are happening.