Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. anotherday

    Object not found -problem

    I think you typed a bad path for your cfm file. 'object not found' appears only when you type an invalid path of your page. if the same 'object not found' message appears when u call any cfm page, then the IP you type is invalid. That's all i know for now, friend. I hope that the other expert...
  2. anotherday

    Sample ColdFusion sites

    There are too many websites: take this: http://www.cumarketingdept.com
  3. anotherday

    return ???

    Why all that, you can do the following for example: <Script language=&quot;JavaScript&quot;> function validate(frm) { if (frm.i_name.value == &quot;&quot;) return false; if (frm.i_age.value == &quot;&quot;) return false; return true; } </Script> <body> <form...
  4. anotherday

    Scrolling Text...

    This is what you want: <script language=&quot;JavaScript&quot;> <!-- function scrollit_r21(seed) { var msg=&quot; Just replace this message with what you want to say....You can add as much as you want but try to keep it short so your visitors do not get bored and impatient like you are...
  5. anotherday

    Action Forms

    If you wanna make all that using one page, you can do that by checking if the submit button is exist or not. Take an example: (suppose that the following page is named 'mypage.cfm') <cfif IsDefined(&quot;FormSubmit&quot;)> <cfquery datasource=&quot;dsn&quot; name=&quot;name&quot;> insert...
  6. anotherday

    Confirming Delete when Delete is not the only submit button

    <form action=&quot;somepage.xxx&quot; method=&quot;post&quot;> // your code <input type=&quot;submit&quot; value=&quot;update&quot;> .... <input type=&quot;submit&quot; value=&quot;delete&quot; onClick=&quot;return confirm('Are you sure?')&quot;> </form>
  7. anotherday

    How can i make sure that a page is opened by only one user?

    I want to make sure that only one user is updating some record in the database...so each record has an id...if that record is in use...some other field will be set to one...to garenty no one is updating the same record at the same time...and when that user clicks a button (update,save,cancel)...
  8. anotherday

    How can i make sure that a page is opened by only one user?

    THE PROBLEM: I have a page called (update.cfm). I don't wanna allow more than one user to open that page at the same time from anywhere in the world. The page consists of some fields (text boxes) and two submit buttons (Update, and Cancel). I tried to use a field called (InUse) as the...
  9. anotherday

    How do I check all the checkbox controls in some page?

    I have an unknown number of checkbox controls, and I have a button control. All I need is to check all the checkbox controls when I click the button control. Thanx.

Part and Inventory Search

Back
Top