hi all
my classic asp page has a form that's populated with a dynamic list of product offers filtered on the productid.
each offer has a radio button with the offerid as the value
so a typical offer list has radio buttons with values like 888, 889, 890 etc....
when the form is submitted, it changes the product 'offer' based on the selection from the list.
The problem is, i want the offer list to remember which radio button was selected and make that radio button 'checked'.
i'm using a session variable to keep the offerid when the form is submitted.
i have printed (response.write) the session variable value and offerid from the recordset and used an IF statement to find the offer where both the session varialbe and offerid are equal to each other.
even though i can see which offer meets the IF criteria, i still can't get the radio button to be checked :-(
Thanks in advance
Andy
Code:<input name="offerselect" type="radio" value="<%=(RSOffersRest.Fields.Item("OfferID").Value)%>" <% If Session("OfferID")=(RSOffersRest.Fields.Item("OfferID").Value) Then %> checked="checked" <%End If %> />


Reply With Quote
Bookmarks