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 TouchToneTommy 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 gio2888

  1. gio2888

    Closing parent window

    I figured it out, may be you can use this method in the future. On the parent page I set it so that the parent is the opener. window.opener = self; window.open ('url'); Then in the child page, I called the parent to close. window.opener.close(); By setting the parent to be the...
  2. gio2888

    Closing parent window

    Hi I have an asp page which uses javascript to call window.open...How can I close the window automatically after window.open has been called? Thanks!!!
  3. gio2888

    Where clause

    Thanks for all the ideas guys, I think what JayKusch said is what I really need....I am trying to match 'sometext' in many different fields. So basically I am not checking it by 1 field column, instead I want to check is through all columns but without having to write 10 sql statements...
  4. gio2888

    Where clause

    Thanks for all the ideas guys, I think what JayKusch is what I really need....I am trying to match 'sometext' in many different fields. So basically I am not checking it by 1 field column, instead I want to check is through all columns but without having to write 10 sql statements.... select *...
  5. gio2888

    Where clause

    Hi, can you put a wild card after the where clause? select * from portal where (anyfield) = 'sometext' Thanks in advance
  6. gio2888

    Recordset Count Question

    Yes, thanks so very very very much...now its time to implement and test!!!
  7. gio2888

    checking against a blank ado recordset

    Yes, it is eof...thanks!
  8. gio2888

    Recordset Count Question

    still need help...trying to show the correct range...is there a way to say like rs(10), rs(11), rs(12)...etc to show rows 10, 11, 12 and so on? Is that even right syntax rs(10) equals to the tenth row?
  9. gio2888

    Blank Recordset

    Thanks!
  10. gio2888

    checking against a blank ado recordset

    I guess this questions good in between with vbscript/asp and sql coding. I am trying to check for blank or null on a recordset... the select statment returned blank when I ran it against sql analyzer. Yet when I check it in my asp code, I tried check = isNULL(rs1("title")) //check...
  11. gio2888

    Blank Recordset

    I guess this questions good in between with vbscript/asp and sql coding. I am trying to check for blank or null on a recordset... the select statment returned blank when I ran it against sql analyzer. Yet when I check it in my asp code, I tried check = isNULL(rs1("title")) //check...
  12. gio2888

    Select statement - return only 1 result

    Is there any way to force a select statement to only return 1 row of results? Thanks in advance
  13. gio2888

    Recordset Count Question

    Yea, basically I need to show 10 results per page...and so I need each page to show the correct range. Thanks for the help!
  14. gio2888

    Recordset Count Question

    How do I know that doing it this way the rs will return the right range...because I am trying to display 10 records at once...so the first set will be 1-10, and then 11-20...etc?

Part and Inventory Search

Back
Top