Aug 18, 2002 #1 finnoscar Technical User Aug 17, 2002 55 GB How do you use radio buttons to return information from a database using ASP and JavaScript?
Aug 18, 2002 #2 snowboardr Programmer Feb 22, 2002 1,401 PH <% '# This would return the value of the radio button checked: Response.Write(Request.Form("radio_button_name") %> Knowing that, you could look on this page: http://www.vzio.com/tutorials/sql_select_statement.asp to find out how to SELECT information from a db then from there on you should get it.. strSQL = "SELECT * FROM UserEmails WHERE userID=" & Request.Form("radiobutton" Jason www.vzio.com ASP WEB DEVELOPMENT Upvote 0 Downvote
<% '# This would return the value of the radio button checked: Response.Write(Request.Form("radio_button_name") %> Knowing that, you could look on this page: http://www.vzio.com/tutorials/sql_select_statement.asp to find out how to SELECT information from a db then from there on you should get it.. strSQL = "SELECT * FROM UserEmails WHERE userID=" & Request.Form("radiobutton" Jason www.vzio.com ASP WEB DEVELOPMENT