|
Revision 5, 0.9 kB
(checked in by DanWilson, 17 years ago)
|
|
Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)
|
| Line | |
|---|
| 1 | <cfsetting enablecfoutputonly=true> |
|---|
| 2 | <cfprocessingdirective pageencoding="utf-8"> |
|---|
| 3 | <!--- |
|---|
| 4 | Name : search.cfm |
|---|
| 5 | Author : Raymond Camden |
|---|
| 6 | Created : October 29, 2003 |
|---|
| 7 | Last Updated : February 28, 2007 |
|---|
| 8 | History : added processingdir (rkc 11/10/03) |
|---|
| 9 | point to index.cfm (rkc 8/5/05) |
|---|
| 10 | Change link (rkc 10/26/05) |
|---|
| 11 | Search box (rkc 9/5/06) |
|---|
| 12 | point to new search (rkc 2/28/07) |
|---|
| 13 | Purpose : Display search box |
|---|
| 14 | ---> |
|---|
| 15 | |
|---|
| 16 | <cfmodule template="../../tags/podlayout.cfm" title="#application.resourceBundle.getResource("search")#"> |
|---|
| 17 | |
|---|
| 18 | <cfoutput> |
|---|
| 19 | <div class="center"> |
|---|
| 20 | <form action="#application.rooturl#/search.cfm" method="post" onsubmit="return(this.search.value.length != 0)"> |
|---|
| 21 | <p class="center"><input type="text" name="search" size="15"> <input type="submit" value="#application.resourceBundle.getResource("search")#"></p> |
|---|
| 22 | </form> |
|---|
| 23 | </div> |
|---|
| 24 | </cfoutput> |
|---|
| 25 | |
|---|
| 26 | </cfmodule> |
|---|
| 27 | |
|---|
| 28 | <cfsetting enablecfoutputonly=false> |
|---|