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: *

  1. JustWondering

    Checkbox value

    Hi, I have an SQL update based on the value of the checkboxes: SQL="Update Table Set Status = " & CInt(Request("chkStatus")) & " Where ID = " & IntID But I couldn't get the value of the checkboxes. I always update with checkbox's value = 0. Here is my...
  2. JustWondering

    focus()

    Hi: What is the eqhivalent ASP code in server site for this statement: Document.Form.txtName.focus() ? Thanks
  3. JustWondering

    Single quote in insert statement

    Hi, When I tried to insert a value with a postrophe, it became "" in my table. name= Kelly's Pan strSQL="INSERT INTO mytable " & _ "VALUES ('" & name & "','" & email & "') " How can I avoid this and still doesn't effect other values(without...
  4. JustWondering

    Radio Button

    Hi, I have a group of radio buttons in page1. When user click submit, if one of the button is not selected, I want to display a msg to tell user must select one to move on. I have some thinf like this but it didn't work (let user go to next page) <input type=&quot;radio&quot...
  5. JustWondering

    Drop dwon box, text wrapped

    Hi, 1 item in my ddbox is too long and it make the ddbox looks ugly, how can I break it down into 2 lines? Thanks
  6. JustWondering

    Session Variable

    Hi, Please help me with thsi easy one, I forgot the systax: I page, I want to set the session var = value of a drop down box. Then I want to set the text box of the next page euqals to this session var. I try something like: Session(&quot;Val&quot;)=Request(&quot;DDBox&quot;) (DDBox is the...
  7. JustWondering

    Encyption

    I'm about to setup an encryption page for my web site but I don't have any clue about this. Do you have any sample code or any link that I can look up? I've heard something about &quot;https&quot; but don't know exactly what it is. After users enter their Creditcard info, they want their data...
  8. JustWondering

    Time-out or Run-time Error Handling

    Can you show me how to handle these kind of error? Customers get these kind of errors when they use our search engine. Thanks.
  9. JustWondering

    Timeout - Error Handling

    I want to handle the time-out and run-time errors with a custom error msg. Can some sone show me how? Thanks.
  10. JustWondering

    ASP Send Mail Function

    Hello, How do you send and BCC to mutiple emailaddresses in Send Mail function? Thanks
  11. JustWondering

    De-dups

    Please take a look at this code and tell me what it does? If there are 2 records with the same fieldx & fieldy, will they be remove both or just one? Thanks. ------- declare @fieldx char(5), @fieldy char(5) declare the_cursor cursor for select fieldx,fieldy from Table1 open...
  12. JustWondering

    Inner Join may be?

    Hi, How do I do a query that will return common records from 3 tables which have 3 fileds match. I've tried the inner join inside another inner join but it gave me error. Thanks
  13. JustWondering

    Select Statement.

    Hello friends, Please help me to make this complicate query: I have 3 tables and want the records return from the first table with these conditions: 1. table1.id = table2.id = table3.id 2. table1.code = 4 3. table1.income > $10,000 4. table3.xcode =2 or=3 Here is what come up with...
  14. JustWondering

    Screen capture

    this may not be for this forum but some of you may know what the best screen capture software is out there

Part and Inventory Search

Back
Top