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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by cshncn

  1. cshncn

    User was redirected to the logon page after successful login

    Thanks for clearing that up. Since we added urltoken to every links and we tested the application fine with cookie turned off, we thought the problem might be something else at first. We also emailed the user with inforamtion on how to enable and disable cookies for AOL browser. We'll see if...
  2. cshncn

    User was redirected to the logon page after successful login

    We add urltoken to every links in the applicaiton except the login page. That way ColdFusion server should take care of cookies instead of setting cookies at client side. Is that correct? We have tested the application with cookie turned off. Not a problem. We tested other applications which...
  3. cshncn

    User was redirected to the logon page after successful login

    Hi, We have an application which set sessionmanagement and clientmanagement to yes in application.cfm file. We also append cfid and cftoken to all the links through out the application. The application has a logon page. After login, a summary page shows up with links to all the other modules...
  4. cshncn

    Preventing form submission twice by doublclicking the submit button

    Thank Phil. I tried the session variable control. It works for click twice with an interval, but when I doubleclick, the action page is still executed twice. I guess the session control on the server is not fast enough to capture the doubleclick and stop the second form submission? cshncn
  5. cshncn

    Preventing form submission twice by doublclicking the submit button

    Hi, Just wondering if ColdFusion has anything to prevent form submission twice when user doubleclicks the submit button. I know Javascript can do the work. But I want to know if there is any server sider solution for this. Thanks.
  6. cshncn

    How to get object and structure info for a table

    Hi, I wonder if I can use a query to list object information for a table, such as name and datatype of columns, constraints, etc. I know this is a simple question but I just couldn't get it by myself. I have searched Books Online but not successful. Thanks! cshncn
  7. cshncn

    A Beginner's Question

    Hi, I'm new to Java. Can someone tell me how to get JDBC driver for SQL Server? And what's the lowest version of java to support jdbc in applet? Thank you in advance. Tony
  8. cshncn

    HTTP_REFERRER question

    Nerver mind. I found the server variable should be HTTP_REFERER but I mistyped it as HTTP_REFERRER. That's the problem.
  9. cshncn

    HTTP_REFERRER question

    Hi, I have a page on a server which is directed to another server (also an ASP page). I just want to display the referrer URL information on the second page. I use Request.ServerVariables("http_referrer") but it gives a blank page. Do I miss anything or any other methods I can use to...
  10. cshncn

    SQL Avg function and ColdFusion Val Ffunction

    Thanks, Philhege. The cast function is T-SQL specific. I want to the code to work for different database, like Access, SQL Server, Oracle, etc. So are any there any SQL functions that do the job but not database specific? Thanks again! cshncn
  11. cshncn

    SQL Avg function and ColdFusion Val Ffunction

    Hi, I have a problem with the following SQL query: <cfquery datasource=&quot;#db#&quot;> SELECT Field1, Avg(Val(Field2)) AS avg_field2 FROM Table1 GROUP BY Field1 </cfquery> The above query works fine for the Access database, in which the data type of Filed2 is Text. After I exported the...

Part and Inventory Search

Back
Top