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!

Search results for query: *

  • Users: gio2888
  • Content: Threads
  • Order by date
  1. 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!!!
  2. gio2888

    Where clause

    Hi, can you put a wild card after the where clause? select * from portal where (anyfield) = 'sometext' Thanks in advance
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. 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 =...
  9. gio2888

    location.replace issue...unable to use back button

    Hi, I am using a top.location.replace(&quot;url&quot;) but when I use the back button I get to the same page, is there a way to use the history object to set the previous state to any url? Please let me know what the correct syntax for it, cause I tried doing top.location.history =...
  10. gio2888

    Alternate Way of Location.Replace()

    I am trying to find another way for location.replace, because when I use it, the back button is disable. This means I am looking for a javascript line that can redirect the same window to another url, but with the ability to use the back button. Thanks...I hope I get a quick response...THANKS IN...
  11. gio2888

    Session Variables

    Hi all! I am writing a login in page for a set of webapges. The login is done, but I need to implement the session for the group of pages so that when someone types in the url of a page, it will recognize that the user has not logged in, and it will redirect to the login page...can someone give...
  12. gio2888

    Error message...

    I am getting this message when I try to compile my server.c file. >gcc server.c -lsocket -lnsl Undefined first referenced symbol in file strcopy/var/tmp/cct7zs3k.o ld: fatal: Symbol referencing errors. No output written to server collect2: ld returned 1 exit status Can anyone help me fix this...
  13. gio2888

    compiling header files

    I want to know how to compile header files with gcc...thanks in advance I tried gcc something.h it didn t work, which option do I use?
  14. gio2888

    OL tag not working

    I declare this OL tag with the following properties. OL { COLOR: #000000; FONT: 12px verdana,arial,helvetica,geneva,sans-serif; LINE-HEIGHT:17px; LIST-STYLE-IMAGE: url(images/dot.gif); LIST-STYLE-POSITION: outside; } The properties are not showing up in DreamWeaver...can any one tell...
  15. gio2888

    Server.Execute Error

    Server object error 'ASP 0228 : 80004005' Server.Execute Error /legalnotices.asp, line 50 The call to Server.Execute failed while loading the page. I have an error on a server.execute line. Can someone explained to me what the error is about. Wayne
  16. gio2888

    Outputting HTML when checkbox is checked (Javascript)

    <table border=&quot;1&quot; rules=ALL width=&quot;600&quot;> <tr> <td valign=&quot;top&quot;> * Lost Key&nbsp;&nbsp; <input type=&quot;checkbox&quot; name=&quot;lost_key&quot; onclick=&quot;lost_key_onclick()&quot;> </td> </tr> </table> <script language=&quot;JavaScript&quot;> <!--...
  17. gio2888

    Database Connection

    Hello, I have this error on my rs.open line. Microsoft ADO/RDS error '800a1004' Business object cannot be created. Heres the code on how I connect to the DB. <% Set RS = Server.CreateObject(&quot;ADODB.RecordSet&quot;) set conn = Server.CreateObject(&quot;ADODB.Connection&quot;)...
  18. gio2888

    checking if string has certain text in it

    Hi, this is what I want to do. Say I have url strings s = &quot;www.something.com/portal.asp?category=dhl&quot; t = &quot;www.yahoo.com&quot; I want to use a if statement to check if the string has the part &quot;portal.asp?category=&quot;. So in this case string s will return true...since it...
  19. gio2888

    How to Display the NULL

    heres a SQL statement... SELECT * FROM portal_main P, portal_cat_title C WHERE P.category = C.category AND ( ( name like '%fyi%' ) OR ( portal_keywords like '%fyi%' ) ) AND ((P.unit_id = '') OR (unit_id like '%NEB%')) OR (unit_id like '%NULL%') ORDER BY name I want the results to show all the...
  20. gio2888

    Closing window after submit

    Whats the syntax for closing a window in VBScript?

Part and Inventory Search

Back
Top