I am fairly new at using Visual Studio to create webpages linked to a SQL database. I am designing my third website - it's a questionnaire using RadioButtonList for Strongly Disagree to Strongly Agree - 5 choices total. I have each of the radio buttons'
values set up 1 to 5 (which will be saved to my SQL database). I need input as to my design. Is it the "correct" way to do this? Also, I want to put headers above all the radio buttons - like in a table. Right now, the radio buttons are showing the value
next to them (1 to 5). How can I get them to show nothing (blank) since the column headers will be sufficient.
Here is my code so far:
<%@ Page Title="Home Page" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"
CodeBehind="Default.aspx.vb" Inherits="StudentCourseEvaluation._Default" %>
<asp:Co ...
Go to the complete details ...