- ColdFusion 9 Developer Tutorial
- John Farrar
- 228字
- 2021-08-05 16:16:39
Managing our product data
Currently, we have a form that can be used for two purposes. It can be used to enter a new product as well as to edit existing ones. We are going to reuse this form. Reuse is the fastest path to make things easier. However, we must not think that it is the only way to do things. What we should think is that not reusing something requires a reason for doing it differently.
In order to edit an existing product, we will have to create a page that shows the existing product records. Let us create the page:
<!--- Example: product_list.cfm ---> <!--- Processing ---> <cfscript> objProduct = createObject("component","product").init(dsn="cfb"); rsProducts = objProduct.getRecordset(); </cfscript> <!--- Content ---> <h3>Select a product to edit.</h3> <ul> <cfoutput query="rsProducts"> <li> <a href="product_edit.cfm?id=#rsProducts.id#">#rsProducts.name# </li> </cfoutput> </ul>
There is no new code here. This is the browser view that we get when we run this page. Here, we will post our edit page. Before you run the code, take the code from 3_1.cfm
that we wrote at the beginning of the chapter and save a copy as product_edit.cfm
to make the page work correctly when someone clicks on any of the products:

Now, we will click on a product. Let us manage the Watermelon Plant for now and observe what happens on the next page:

This is our edit page, and we will modify it so that it can get the data when we click through from our list page.
- Creo Parametric 8.0中文版基礎入門一本通
- Moodle 1.9 for Teaching 7/14 Year Olds: Beginner's Guide
- JasperReports for Java Developers
- CAXA CAD電子圖板2020工程制圖
- Visio圖形設計從新手到高手(兼容版·第2版)
- Cinema 4D 2024+AI工具詳解與實戰(視頻微課·全彩版)
- 照相館的故事:Photoshop CC 2018調色合成精修
- Photoshop CC入門與進階
- AI短視頻生成與剪輯實戰108招:ChatGPT+剪映
- BIRT 2.6 Data Analysis and Reporting
- 中文版Photoshop CS6從新手到高手·全彩版
- Microsoft Azure: Enterprise Application Development
- Photoshop CS6數碼照片處理入門到精通
- Photoshop+Illustrator+CorelDRAW一站式高效學習一本通
- 中文版Photoshop 2020基礎培訓教程