You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(1) |
Feb
(7) |
Mar
(3) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ted H. <ted...@gm...> - 2010-06-26 18:47:54
|
The best place to post this message would be the Apache Struts user list. http://struts.apache.org/mail.html -Ted. On Thu, Jun 24, 2010 at 9:37 PM, murali krishna <mur...@gm...> wrote: > > i am getting the error while running web application using struts. > error is: > cannot find actionmappings and formbeanactions collection.in the > servletException > -- > Thanks and Regards > Muralikrishna Kommi > 9741684716 > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Struts-help mailing list > Str...@li... > https://lists.sourceforge.net/lists/listinfo/struts-help > > |
From: murali k. <mur...@gm...> - 2010-06-25 02:08:06
|
i am getting the error while running web application using struts. error is: cannot find actionmappings and formbeanactions collection.in the servletException -- Thanks and Regards Muralikrishna Kommi 9741684716 |
From: Sohana C. <so...@ho...> - 2008-09-25 17:29:57
|
Marcos, Thanks for your help. It worked! ~Sohana >From Marcos Pazo:Hi, I think you must use "styleId" instead "id". Example: <html:radio name="queryForm" property="probeIdType" value="affy" styleId="AffyId" /> From: so...@ho...To: str...@li...Date: Wed, 24 Sep 2008 18:36:55 +0000Subject: [Struts-help] using "id" inside html:radio within struts framework Hi,I am trying to use "id" inside html:radio or html:file tags for referring it to "label for" in a jsp file. As you can see, I am using struts framework. I used the following code:<html:radio name="queryForm" property="probeIdType" value="affy" id="AffyId" onclick="showInputHelp()"/><label for="AffyId">Affymetrix id</label></td> But when I added the id="AffyId" part, it does not work- the page does not get loaded in the browser. Without adding the id="AffyId" part, everything works fine. Any idea? Thanks.Sohana Stay up to date on your PC, the Web, and your mobile phone with Windows Live. See Now _________________________________________________________________ Stay up to date on your PC, the Web, and your mobile phone with Windows Live. http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/ |
From: Sohana C. <so...@ho...> - 2008-09-24 18:37:01
|
Hi, I am trying to use "id" inside html:radio or html:file tags for referring it to "label for" in a jsp file. As you can see, I am using struts framework. I used the following code: <html:radio name="queryForm" property="probeIdType" value="affy" id="AffyId" onclick="showInputHelp()"/><label for="AffyId">Affymetrix id</label></td> But when I added the id="AffyId" part, it does not work- the page does not get loaded in the browser. Without adding the id="AffyId" part, everything works fine. Any idea? Thanks. Sohana _________________________________________________________________ Stay up to date on your PC, the Web, and your mobile phone with Windows Live. http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/ |
From: Mohammad S. <m.s...@ec...> - 2007-09-03 09:17:35
|
Dear all,=20 In order to better understanding and using of Struts2, I have = created=20 the Animated Tutorial for Struts2 that shows how does struts work.=20 My goal for creating this document was to show basic primitives = such as=20 request scope value stack, action classes and objects to someone who = wants=20 to select between web frameworks such as Struts, JSF, Tapestry and = etc.=20 I want you all to inform me about usefulness of this tutorial.=20 http://khorshid.ut.ac.ir/~m.s.alavi/Tutorial.zip=20 First of all you must read the readme.pdf and then start with first = scenario.=20 --kind regards=20 Mohammad SeyedAlavi |
From: Marcos P. <kit...@gm...> - 2007-08-09 10:57:03
|
Hi everybody, First, sorry for my English. I am newbie with Struts (only 1 week), so I don't understand it very well. I am trying to develop an application which has a page with a form search in which I want to show the results of the same one. I did an ActionForm (with all the parameters of the form and two collections; one for the results of the search and other to fill up a html:select), and an Action class: <code> public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { SearchForm formSearch = (SearchForm) form; String a = ((SearchForm) form).getA(); String b= ((SearchForm) form).getB(); int c = (( SearchForm) form).getC(); int d = ((SearchForm) form).getD(); String e = ((SearchForm) form).getE(); int f = ((SearchForm) form).getF(); String g = ((SearchForm) form).getG(); int h = ((SearchForm) form).getH(); SearchBean bean = new SearchBean(a,b, c, d,e, f, g, h); String page= request.getParameter("page"); if (page== null) page= "1"; String user = (String) request.getSession().getAttribute("USERNAME"); MyFacade facade = new MyFacade(user); Collection types= new Vector(); types.add(new LabelValueBean("AS","AS")); types.add(new LabelValueBean("WF","WF")); types.add(new LabelValueBean("HJ", "HJ")); Collection results = facade.findResults(bean, Integer.parseInt(page)); formSearch.setResultList(results); request.setAttribute("types", types); return mapping.findForward("success"); } </code> My struts-config.xml <code> <form-beans> <form-bean name="searchForm" type="my.controller.forms.SearchForm"/> </form-beans> <global-exceptions/> <global-forwards> <forward name="search" path="/pages/search.jsp" redirect="true"/> </global-forwards> <action-mappings> <action path="/search" type="my.controller,action.MyAction" name="searchForm" input="/pages/search.jsp" scope="session"> <forward name="sucess" path="/busqueda.do" redirect="false"/> </action> </action-mappings> </code> And the jsp: <code> <%@ taglib uri="/tags/struts-html" prefix="html"%> <%@ taglib uri="/tags/struts-bean" prefix="bean"%> <html> <head> <title>Search</title> </head> <body> <h1>Search</h1> <html:errors /> <table> <html:form action="/search"> <tr> <td><bean:message key="search.a" /></td> <td><html:text property="a" /></td> </tr> ........... ........... <tr> <td><bean:message key="search.type" /></td> <td> <html:select property="c" > <html:options collection="types" property="label" labelProperty="value" /> </html:select> </td> </tr> <tr> <td><html:submit /></td> <td><html:cancel /></td> </tr> </html:form> </table> <br /> <table> </table> </body> </html> </code> First, when I click on submit button, struts doesn't find any forward page, action. I know it may be very simple thing but I would like that you could help me . Thanks all |
From: Pravin K. <pra...@ek...> - 2006-05-18 13:11:37
|
Hi, We are using struts framework for our application and we want to retain values of our custom tags, as struts tag are doing. We are stuck in when scope is session, I mean when we have to retain values for long duration (scope = session). -- Best regards Pravin Kumar eka Software Solutions www.ekaplus.com Tel: +91 80 411 35867/9 ext 217 Fax: +91 80 411 35868 ____________________________________________________________________________ __________ This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you. |
From: Dhiraj U. <dhi...@gm...> - 2005-10-17 02:47:52
|
<http://sourceforge.net/mailarchive/forum.php?forum_id=3D18761> |
From: Joab A. <ii...@gm...> - 2005-03-08 17:50:31
|
From: Amit G. <rk...@ya...> - 2004-10-27 00:18:38
|
Can we use border=0 with html:text? I did not see border property in html:text input field. Thanks -Amit __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: Florian M. <pa...@wa...> - 2004-07-21 18:38:51
|
Hello, I allows itself to send a small mail because I have a very great need for assistance and my search of answers was all unfruitful, therefore I put much hope in your HELP. I use Tomcat 4.1.30 and I have just tried to configure a Web application with the final version of Struts 1.1, and I have a problem while I launch my server of the waiter after having configure my datasource in my file struts-config.xml. My configuration is : <data-sources> <data-source key="org.apache.struts.action.DATA_SOURCE" type="org.apache.commons.dbcp.BasicDataSource"> <set-property property="autoCommit" value="false" /> <set-property property="driverClass" value="com.microsoft.jdbc.sqlserver.SQLServerDriver" /> <set-property property="user" value="myuser" /> <set-property property="password" value="mypwd" /> <set-property property="url" value="jdbc:microsoft:sqlserver://myserver;DatabaseName=mydbname" /> <set-property property="readOnly" value="false" /> <set-property property="maxCount" value="40" /> <set-property property="minCount" value="20" /> <set-property property="password" value="" /> </data-source> </data-sources> But when Tomcat was launch, it couldn't initialize Servlet and catch this exception : StandardContext[/WebTestStruts]: Servlet /WebTestStruts threw load() exception: javax.servlet.ServletException: Servlet.init() for servlet action threw exception javax.servlet.ServletException: Servlet.init() for servlet action threw exception at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:946) at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:810) at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3279) at org.apache.catalina.core.StandardContext.start(StandardContext.java:3421) ..... After i have analyse this process, i have found the root cause. It's seems to be the GenericDataSource ! It couldn't found this class... but I dont use this pool ! PLEASE HELP ME ! Thanks for your help, Cordially, FMU |
From: Natalya <na...@li...> - 2004-06-28 20:24:09
|
Please, help me!!! I'he got the following problem when trying to use DataSource with struts: javax.servlet.ServletException: Servlet.init() for servlet action threw exception at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:96 3) .... root cause: java.lang.NoClassDefFoundError: org/apache/struts/legacy/GenericDataSource at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:488) My web.xml: <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <!-- Action Servlet Configuration --> <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>application</param-name> <param-value>ApplicationResources</param-value> </init-param> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>10</param-value> </init-param> <init-param> <param-name>detail</param-name> <param-value>10</param-value> </init-param> <init-param> <param-name>validate</param-name> <param-value>true</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <taglib> <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri> <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri> <taglib-location>/WEB-INF/struts-html.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri> <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/struts-template.tld</taglib-uri> <taglib-location>/WEB-INF/struts-template.tld</taglib-location> </taglib> <resource-ref> <description>Resource reference</description> <res-ref-name>jdbc/tomcatcinemas</res-ref-name> <res-type> javax.sql.DataSource</res-type> <res-auth> Container</res-auth> </resource-ref> </web-app> My struts-config.xml: <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"> <struts-config> <data-sources> <data-source> <set-property property="autoCommit" value="true"/> <set-property property="description" value="MySQL"/> <set-property property="driverClass" value="com.mysql.jdbc.Driver"/> <set-property property="maxCount" value="4"/> <set-property property="minCount" value="2"/> <set-property property="user" value="tccinemaUser"/> <set-property property="password" value="password"/> <set-property property="url" value="jdbc:mysql://192.168.1.5/tomcatcinemas"/> </data-source> </data-sources> <form-beans> <form-bean name="filmForm" type="bible.tomcat.tccinemas.FilmForm" /> </form-beans> <global-forwards> <forward name="error" path="/strutsError.jsp"/> </global-forwards> <action-mappings> <action path="/listFilms" type="bible.tomcat.tccinemas.FilmListAction" name="filmForm" scope="request" validate="false"> <forward name="success" path="/strutsListFilms.jsp"/> </action> </action-mappings> </struts-config> |
From: <Wil...@eu...> - 2004-06-08 10:54:52
|
I am trying to build an upload app based on the struts-upload.war example. I would like to know how to specify the upload directory, instead of having the files uploaded into the default upload folder. Does anyone know how this is done=3F Thanks =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D National Australia Group Europe Limited (Company Number 02108635, Registered= Office 88 Wood Street, London EC2V 7QQ) (NAGE) is a subsidiary of National = Australia Bank Limited (an Australian registered company). The following UK = subsidiaries of NAGE are authorised and regulated by the Financial Services = Authority: Clydesdale Bank PLC, Yorkshire Bank PLC, Northern Bank Limited, N= orthern Bank Executor and Trustee Company Limited, MLC Savings Limited, MLC = Trust Management Company Limited, Clydesdale Bank Insurance Brokers Limited,= Yorkshire Bank Financial Services Limited, Northern Bank Insurance Services= Limited, National Australia Bank Limited. In Ireland National Irish Bank Li= mited and National Irish Investment Bank Limited are regulated by the Irish = Financial Services Regulatory Authority. The views and opinions expressed in this email may not reflect the views and= opinions of any member of the group of which NAGE forms part. The informati= on contained in this message is confidential and may also be privileged. It = is intended only for the addressee named above. The unauthorised use, disclo= sure, copying or alteration of this message is strictly prohibited. If you a= re not the addressee (or responsible for delivery of the message to the addr= essee), please notify the originator immediately by return message and destr= oy the original message. This message and any attachments have been scanned = for viruses prior to leaving the NAGE network. However, NAGE does not guaran= tee the security of this message and will not be responsible for any damages= arising as a result of any virus being passed on or arising from any altera= tion of this message by a third party. NAGE may monitor emails sent to and f= rom the NAGE network. |
From: Andras D. <da...@vi...> - 2004-04-05 09:33:04
|
Hi, I used to access message resource from the reset method of form beans in the following way: final Locale lcl = (Locale) request.getSession().getAttribute (Action.LOCALE_KEY); final MessageResources rs = servlet.getResources(); String label = rs.getMessage(lcl,key); Now, I switched to Struts 1.1 and I'd like to use separate modules in the next version of my web application. In Struts 1.1 some parts of the above code have been deprecated (Action.LOCALE_KEY, servlet.getResources()). Moreover, it doesn't work in an application that has modules. What is the correct way of accessing message resources in form beans? Thanks, Andras D. ------------------------------------------------- This mail sent through IMP: http://horde.org/imp/ |
From: <fu...@ce...> - 2004-03-29 10:23:53
|
Hi, I've little problem with struts project. I have 2 Action classes and, when I'm at the first Action I set up the parameter like this request.setAttribute("id",new Long(id)) and I do forward to the second Action class where I'm trying to get the "id" value like this: request.getParameter("id"), but the second Action doesn't see this variable. Why if I do forward the variables (attirbutes) aren't forwarded? Thanx for help. L. Martincik |
From: Jason L. <ja...@su...> - 2004-03-09 22:43:27
|
I want to use com.jgsullivan.struts.plugins.QuartzPlugIn so I can schedule tasks in my Struts webapp. Is it possible to access the web container application scope objects from within a job class? Jason Long - CEO and Chief Software Engineer Supernova Software - supernovasoftware.com BS Physics, MS Chemical Engineering |
From: Amit G. <rk...@ya...> - 2004-02-27 14:19:23
|
confirm 188637 __________________________________ Do you Yahoo!? Get better spam protection with Yahoo! Mail. http://antispam.yahoo.com/tools |
From: Amit G. <rk...@ya...> - 2004-02-27 14:12:06
|
confirm 188637 __________________________________ Do you Yahoo!? Get better spam protection with Yahoo! Mail. http://antispam.yahoo.com/tools |
From: Amit G. <rk...@ya...> - 2004-02-27 14:10:37
|
__________________________________ Do you Yahoo!? Get better spam protection with Yahoo! Mail. http://antispam.yahoo.com/tools |
From: Brad S. <bg...@be...> - 2004-02-14 23:33:17
|
Hi - I have been trying to use appfuse (via cvs checkout). When I use ant and the "new" target, appfuse provides the following output: [bgsmith@pico appfuse]$ ant new -Dapp.name=3Dtest4 -Ddb.name=3Dtest4db Buildfile: build.xml =20 clean: [echo] Cleaning build and distribution directories =20 new: [echo] Creating new application named 'test4'... [copy] Copying 323 files to /home/bgsmith/src/test4 [copy] Copying 1 file to /home/bgsmith/src/test4 =20 After the last [copy] statement is written to the screen, the cpu pegs at 100% and nothing happens until I get a file size exceeded response from the OS (redhat rhel3). Not sure what is happening. Brad --=20 Brad Smith <bg...@be...> |
From: Andreas K. <a.k...@ve...> - 2004-02-14 22:37:24
|
I'm trying to deploy polls.war on JBoss 3.2.3 following the instructions in INSTALL.txt, but calling http://localhost:8080/polls reports the following exception: [ServletException in:/views/pages/pollsMenu.jsp] class org.sf.polls.charts.PollsData : org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from classpath resource [applicationContext.xml]; nested exception is: java.io.FileNotFoundException: Could not open classpath resource [applicationContext.xml]' The browser location field shows: http:///localhost:8080/polls/views/admin.jsp What can I do to make this work? Any advice is much appreciated. Thanks, Andreas |
From: John W. <joh...@ho...> - 2004-02-11 08:47:43
|
I have been developing against mySQL but now need to switch my application over to SQL Server 2000 for production. After trying to edit various files and redeploying through Ant without any luck I would like to know if somebody can perhaps give me a step-by-step method for switching databases or just a quick run through of what I need to do. I did check the Wiki tutorial on SQL Server but didnt find anything that can help me. Please note that I would be using the Microsoft JDBC driver. I have used this driver very successfully with other Struts web applications before so it should be fairly easy. (I hope). Any help appreciated. Kind Regards, John _________________________________________________________________ G-string or thermal underwear? Find out at MSN Weather! http://www.msn.co.za/weather/ |
From: Pant, A. <ash...@ib...> - 2004-02-05 18:50:12
|
hi, I am using the piece of code below to render a text box. The bean currentRow has methods getRegion() and getObjectId. I am using the value attribute so that i can identift each and every text box sice i dont know at design time how many text boxes are to be generated. My problem is that the statement "value="${MyGrid.currentRow.objectId}" is not getting evaluated, This is getting printed as is, inside the text box. Please see the code snippets below. code in JSP -------------------------------- <html:text name="MyGrid.currentRow" value="${MyGrid.currentRow.objectId}" property="region" size="10" maxLength="19" /> HTML generated ---------------------- <input type="text" name="region" maxlength="19" size="10" value="${MyGrid.currentRow.objectId}"> thanks ashish ************************************************************************** This message and any attached documents contain information which may be confidential, subject to privilege or exempt from disclosure under applicable law. These materials are solely for the use of the intended recipient. If you are not the intended recipient of this transmission, you are hereby notified that any distribution, disclosure, printing, copying, storage, modification or the taking of any action in reliance upon this transmission is strictly prohibited. Delivery of this message to any person other than the intended recipient shall not compromise or waive such confidentiality, privilege or exemption from disclosure as to this communication. If you have received this communication in error, please notify the sender immediately and delete this message from your system. ***************************************************************************** |
From: Santos, P. <pet...@cs...> - 2004-01-08 19:46:09
|
Hi, I'm very new to Struts, so I apologize ahead if I'm not explaining = myself correctly. I'm trying to extend the examples in the book "Struts in Action". = Specifically the FindByLast() class in that artimus1.1 app. My problem is that I have a "results.jsp" page that is suppose to = display the results of a database query=09 and it's not displaying anything, but it's not erroring either. I = believe I have a collection "LIST" in my request scope since=20 I can make the property size change if I change the number of rows in = my query, I just can't seem to get at the data. Here are the key players. =09 - forums.ForumBean; - this is a simple bean that extends = ProcessBeanBase with getter methods getForum() and setForum(); - forums.ShowForums; - extends ForumBean and wraps the collection = returned by my Database Access class. - scaffold.ProcessAction - says it puts the Collection in my request = scope. I've looked all over for help on this, and it's now the 3rd week that = I've been stuck on this. Any help is deeply appreciated. Thanks. Peter. =20 =20 Here is a snippet from "results.jsp". = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D <TD colspan=3D2>Rows found =3D(<bean:write name=3D"LIST" = property=3D"size"/>)</TD> // this correctly returns "Rows found = =3D(2)"=20 =09 then i have ... <logic:iterate name=3D"LIST" property=3D"iterator" id=3D"row"> <% i++;%> <TR> <TD>(<%=3Di%>)<bean:write name=3D"row"/> </TD> = <TD>(<%=3Di%>)<bean:write name=3D"row" property=3D"forum"/></TD></TR> </logic:iterate> I get the following results = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D <TR> <TD>(1)forums.ShowForums@da1515</TD> <TD>(1)</TD></TR> <TR> <TD>(2)forums.ShowForums@19e3e24</TD> <TD>(2)</TD></TR> =09 =09 |
From: Matthew K. W. <ma...@ha...> - 2003-09-03 14:11:00
|
I am sorry to trouble you, but I think I'm missing something very fundamental. The demo for appfuse is pretty sweet, but I'm wondering how to integrate it in my coding efforts -- where should I place my code, and can I have it generate the pages and such as are generated within appfuse? Would someone please hand me a clue? Thanks! matt -- The thing about insights is that they tend to be slippery, and I have to keep them "in sight" lest I forget. |