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 Shaun E 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 pourlefun

  1. pourlefun

    url variables

    OHHHHHHHHH YESSSSSSSSSSS I solved the problem. I got it guys I replaced : if(curr=="undefined"){ curr=1} with this: if(isNaN(curr)){ curr=1} and the page is displayed as wished. Thanks for everyone who helped.
  2. pourlefun

    Passing Variables

    OHHHHHHHHH YESSSSSSSSSSS I solved the problem. I got it guys I replaced : if(curr=="undefined"){ curr=1} with this: if(isNaN(curr)){ curr=1} and the page is displayed as wished. Thanks for everyone who helped.
  3. pourlefun

    url variables

    Here is the first part of my code: <%@ language=JavaScript%> <!--#INCLUDE FILE="budget.html"--> <head><link rel="StyleSheet" type="text/css" href="cera.css" > <title>finition</title><% budget=parseFloat(Request.cookies("budget")) %> </head> <BODY> <% curr=Request.queryString("page")...
  4. pourlefun

    url variables

    I did remove them, but the error is exactly the same.
  5. pourlefun

    url variables

    I think that the problem is not with "page" but with the index.asp itself! Am I right?
  6. pourlefun

    url variables

    Yes I did. And the error is : Microsoft OLE DB Provider for ODBC Drivers error '80040e07' [Microsoft][ODBC SQL Server Driver][SQL Server]Syntax error converting the varchar value 'undefined' to a column of data type int. thank you
  7. pourlefun

    url variables

    CAN anyone help!!!!! pleasssssssssse
  8. pourlefun

    url variables

    here is the code I wrote: if(Request.queryString("page") =="" ){ curr = 1} else{ curr = parseInt(Request.queryString("page")) } but the error is the same my head is getting biggggggger and heavier
  9. pourlefun

    url variables

    Thanks, but I can't figure out how to fix that. I gave "page" 1 as a value, but the porblem remains the same.
  10. pourlefun

    url variables

    no clue yet!!
  11. pourlefun

    url variables

    I created a page called home.asp and it redirect to index.asp?page=1, then when I click on different categories, everything is working. The thing is why index.asp show always the same error!!!
  12. pourlefun

    url variables

    which form? I have no forms in the page. I am desperate...
  13. pourlefun

    url variables

    here is what it says: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'NaN'. /swt/index.asp, line 14
  14. pourlefun

    url variables

    yes I am declaring the use of Jscript
  15. pourlefun

    url variables

    Well, I agree that I have to start the page at 1 in order to display dynamically other pages from the Date Base. my code is this: <% curr=parseInt(Request.queryString("page")) con=Server.createObject("ADODB.Connection") con.open("transact", "sa", "gouba570") rs=con.execute("SELECT...

Part and Inventory Search

Back
Top