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 strongm 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. 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?
  15. gio2888

    Recordset Count Question

    Hi, I am trying to display 10 sets of records at once....so this is basically what I am trying to do. At the reponse.write statement, how do I specify the recordset based on the count...like rs1, rs2, rs3...etc? what is the syntax like? Also if my sql statement is select *, then how do I for...
  16. gio2888

    Using result set and setting it to another select statement

    This might be confusing, I will do my best to describe my problem. Heres the sql statement I am running... select * from portal P, portal_title C where P.category = C.category AND (name like '%is%' or portal_keywords like '%is%') I want to take one field from the recordset, and input it as a...
  17. gio2888

    2 Simple Href Question

    Thank you....can someone help me solve the other problem as well? Thanks
  18. gio2888

    2 Simple Href Question

    How come when I click on this it does not refresh the parent page, the child page closes, but the parent page does not move? What I am saying is that in the help.asp it does not move to the glossary section. <a href=&quot;javascript:updateParent('Help.asp#glossary')&quot; onClick =...

Part and Inventory Search

Back
Top