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 Chriss Miller 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 llldnylll

  1. llldnylll

    Submit form and go to detail page.

    When I go to my detail page... the first record on my DB appears. How can I call the record that was just submitted?
  2. llldnylll

    Submit form and go to detail page.

    I know this is probably easy for all, but im having problems with this. What do I need to do, so that after the submit button is pressed; It submits form to my DB and opens new window with data that was submitted?
  3. llldnylll

    List Menu

    I posted this in Dremweaver Forum, but was redirected here.. I have a list menu(Status MENU) with 4 values: IN, OUT, BREAK and GONE. I would like to have a hidden list menu (Load MENU)that only appears when "IN" is selected from Status Menu and not appear if other values are selected. Is this...
  4. llldnylll

    Hidden List Menu?

    I have a list menu(Status MENU) with 4 values: IN, OUT, BREAK and GONE. I would like to have a hidden list menu (Load MENU)that only appears when "IN" is selected from Status Menu and not appear if other values are selected. Is this possible? How can I do this? Thanks in advance.
  5. llldnylll

    Update Admin Password

    I'm stuck so don't know what to try. ' *** Update Record: construct a sql update statement and execute it If (CStr(Request("MM_update")) <> "" And CStr(Request("MM_recordId")) <> "") Then ' create the sql update statement MM_editQuery = "update " & MM_editTable & " set " For MM_i =...
  6. llldnylll

    Update Admin Password

    Im not sure it this will help... MY Recordset: <% Dim RS_Password Dim RS_Password_numRows Set RS_Password = Server.CreateObject("ADODB.Recordset") RS_Password.ActiveConnection = MM_CN_VZThot_STRING RS_Password.Source = "SELECT * FROM Employees" RS_Password.CursorType = 0...
  7. llldnylll

    Update Admin Password

    I tried searching for my problem, but nothing came up... I am trying to crate a page that, after login in, admin can update their password. Why is it that, no matter who logs in, it keeps changing the same users PSWRD (not user who logged in)?
  8. llldnylll

    Adding color to Recordset

    SWEET!! It's only adding color to VZ_Size filed and skipping the others, but its ok. Thanks!
  9. llldnylll

    Adding color to Recordset

    Didn't work. Error Type: Microsoft VBScript compilation (0x800A03EA) Syntax error /list/list.asp, line 44, column 47 if (RS_DB.Fields.Item("VZ_Size").Value == 'tall' then
  10. llldnylll

    Adding color to Recordset

    Here's the code... <% While ((Repeat1__numRows <> 0) AND (NOT RS_DB.EOF)) %> <tr> <td><%=(RS_DB.Fields.Item("AutoNO").Value)%></td> <td><%=(RS_DB.Fields.Item("VZ_Size").Value)%></td> <td><%=(RS_DB.Fields.Item("VZ_Desc").Value)%></td>...
  11. llldnylll

    Adding color to Recordset

    Thanks for the response... Where would I place colorRS(myrecordset("myfield"))? Monksnake this is an example of the data: Size Description Type Orderd m T-shirt Team y m Pants Plain n m Shorts Team y s T-shirt Team n s Pants Plain y s Shorts Team n l T-shirt Team y l Pants Plain n l Shorts...
  12. llldnylll

    Adding color to Recordset

    Is there a way to add color to my Dynamic Text based on its data? I have a page with all of items... I want all record that contains the word tall to be blue, short yellow and med red. Is it possible?
  13. llldnylll

    Forms and radio buttons.

    When I use "Insert Record" from server behaviors, It only lets me assign 1 value per element. How can I have it assign 2 values per element?
  14. llldnylll

    Forms and radio buttons.

    I have 2 button "Tall" & "Short" and in my DB I have a 2 fields "Size" & "Point" Is it possible to get my radio button pass two different information into my DB? So, when a user selects "tall" it will pass tall to "size"fld and 5 to "point"fld.
  15. llldnylll

    Adding Numbers?

    In my table, one field is for points. Is there a way that I can create a query that will add up all the points? How about filtering them by users?

Part and Inventory Search

Back
Top