| Title: |
Caller Problem
|
| Date: |
12/31/02
Posts
|
| Summary: |
Looking for a way to make a custom tag's query recordset available within other custom tags? This thread contains a solid discussion about how custom tags should be used and provides several code snippets for you to try out. |
| |
| Title: |
INPUT = FILE
|
| Date: |
12/31/02
9 Posts
|
| Summary: |
Need to autofill a text box with the complete filepath of a "browsed" file selection? Try this IE-only solution:
<input type="file" name="nameFile"
style="display:none;"
onchange="this.form.nameText.value=this.value">
<input type="button" name="nameButton"
value="Browse"
onclick="this.form.nameFile.click()">
<input type="text" size="70"
name="nameText">
|
|
| |
| Title: |
Verify that Updater 2 Has Been Applied
|
| Date: |
12/31/02
6 Posts
|
| Summary: |
To verify whether or not you've installed CFMX Updater 2, open CF Administrator and click on "Version Information" at the top. If the version number is 6,0,0,55693, you *have* indeed installed Updater 2! |
| |