> -----Original Message----- > From: [email protected] [mailto:[email protected]] > On Behalf Of Kurt Wendt > Sent: Monday, January 17, 2011 9:31 AM > To: [email protected] > Subject: VFP and Webpages... <snipped> > > Does anyone have advice for me - in regards to generating HTML webpages > from within VFP? I've never worked w/ASP either - but, maybe that is > something else I should look into. However, I want to do this as Simply > as possible. I want to downgrade the website ASAP - including moving the > Domain - so that's why I am looking for something simple - and hoping > not to have a steep learning curve to try to implement this change in my > Gallery! >
I've done this before... basically this is what I did: Look at your current website or what you desire to have i.e. the overall design of a Top of Page, Footer, Menus etc. Build a module for each. Design a framwork with which to build each content page. You will need to handle the "Item 10 of 25" problem i.e. pagenation... not hard - just tedious to stay on top of. VFP spits out HTML code just fine - to the Fox it's just all text anyways... When you 'push the button' your program just does something like this: do Main_Page_Top do Main_Page_Menu do Page_Surreal do Page_Geometry etc... do Main_Page_Footer I did an entire inventory control system this way... The FTP upload isn't a big deal either.... you might want to have your code check the existing site contents so you don't waste time/bandwidth uploading the same images over and over... My $.02 Thanks, Matthew Jarvis || Business Systems Analyst IT Department McKenzie-Willamette Medical Center 1460 G Street, Springfield, OR 97477 || Ph: 541-744-6092 || Fax: 541-744-6145 -------------------------------------------------------------------------- Disclaimer: This electronic message may contain information that is Proprietary, Confidential, or legally privileged or protected. It is intended only for the use of the individual(s) and entity named in the message. If you are not an intended recipient of this message, please notify the sender immediately and delete the material from your computer. Do not deliver, distribute or copy this message and do not disclose its contents or take any action in reliance on the information it contains. _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/69f310c05dd83c48a84ba3769ce1ecf8042b9...@tntriexevs02.triadhospitals.net ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

