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 SkipVought 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: jason9898
  • Order by date
  1. jason9898

    the simplest of tasks...always the hardest.

    i think i alomst got it... This code will display the checked fields based on the database and allow me to update the values. the only problem is the table looks like it repeats for every record and i also have a submit button for every record... I need to have only one submit button at the...
  2. jason9898

    i give up...radio button loops:(

    I did have to make a slight change to the code and it did indeed work. Changed the second name= to the same name: <input type="radio" name="r<%= Recordset1("GameID")%>" value="1" <%If (CStr(Abs(Recordset1("Pick_HA"))) = CStr("1")) Then...
  3. jason9898

    i give up...radio button loops:(

    if i change it to this: <td width="44%"><input <%If (CStr(Abs((Recordset1.Fields.Item("Pick_HA").Value))) = CStr("1")) Then Response.Write("checked") : Response.Write("")%> type="radio" name="checkbox" value="1"> <input <%If (CStr(Abs((Recordset1.Fields.Item("Pick_HA").Value))) =...
  4. jason9898

    i give up...radio button loops:(

    sheco, This works perfectly with the checkbox just like this below? %> <tr> <td width="8%"><%= Abs((Recordset1.Fields.Item("Pick_HA").Value)) %></td> <td width="44%"><input <%If (CStr(Abs((Recordset1.Fields.Item("Pick_HA").Value))) = CStr("1")) Then Response.Write("checked") ...
  5. jason9898

    i give up...radio button loops:(

    Think their has to be some other kind of code missing? I am clueless?
  6. jason9898

    i give up...radio button loops:(

    sheco....I do not know how to do this from the asp side? please eloborate?
  7. jason9898

    radio buttons

    is their a way to create dynamic radio buttons in dw using a repeat region that reads from a recordset field (bit 1 or 0) in whic for every record it displays a radio button checked 1 or zero? I got this to work with a check box field but it will not work with a radio button. Can someone show...
  8. jason9898

    i give up...radio button loops:(

    Can anyone help me on this? I do not know what do do................
  9. jason9898

    i give up...radio button loops:(

    i do not know how to fix. dreamweaver generates the rado button code and says set value equal to field. here is the view source <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form method="post"> ID#...
  10. jason9898

    i give up...radio button loops:(

    I hate posting a lot of code but i am deperate. I have a database field cal pick_ha, a bit field with 1 and 0 populated. I want to display them in a table and allow users to update them. With this code you can see the dynamic field pick_ha display as true or false when executed but the radio...
  11. jason9898

    the simplest of tasks...always the hardest.

    I can only get it to populate certain radio buttons from the db. Only two appear, when their are 16 in total with 1 and 0's for everything. I followed you code exactly, i set the set value equal to the database field and still nothing. the loop seems to work perfectly for everything else...
  12. jason9898

    ip address

    Is their a way in access 2000 to write an update query or vb code to update a field called ip address in tbladdress the ip address of a computer?
  13. jason9898

    the simplest of tasks...always the hardest.

    Sheco, Very very helpful example. I did get it to execute properly. The problem I am having is getting it to appear cleanly in a nice table. If I insert a table and place the ASP code in it, it repeats the whole table for every record. I cannot get the repeat region to operate correctly...
  14. jason9898

    the simplest of tasks...always the hardest.

    The problem is the table data is dynamic. I cannot rely on hard coding the radio buttons. It needs to be driven the same way as the repeat region works...
  15. jason9898

    the simplest of tasks...always the hardest.

    I have a sql server 2000 table with the following. ID Choice 1 1 2 0 3 1 In dreamweaver, using asp vb script language, I created a recordset of this table, the a dynamic table of the data (repeat region) to display this data on my web page. I want to add a radio group that...
  16. jason9898

    ip address

    Is it possible to determine a pc's ip address via a cr formula? CR 8.5
  17. jason9898

    frustrated radio buttons

    I have a sql server database field set to bit. 1/0 I am developing in ASP VBSCRIPT. In DW, I created a table with a dynamic radio button. The values are 1 and 0. I created a record set for this data (unique record) so I can update it via the form. I choose numeric as the update as option...
  18. jason9898

    update query?

    I created a recordset in my very simple web page in hopes that i could perform an update query. i setup the db/site/bindinds/server behavior and can see results from my query but i get the following message when i try to add an update query: before using this server behavior, please create a...

Part and Inventory Search

Back
Top