做一个在线调查平台,之前都是在论坛里搜集代码凑合着一块,现在要作一些修改,希望各位前辈出手相助
网页前台有6个RadioButtonList<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatColumns="5" 
                            RepeatDirection="Horizontal" Width="100%" RepeatLayout="Table" 
                            AutoPostBack="True" 
                            onselectedindexchanged="RadioButtonList1_SelectedIndexChanged">
                        <asp:ListItem Value="5" Text=""></asp:ListItem>
                        <asp:ListItem Value="4" Text=""></asp:ListItem>
                        <asp:ListItem Value="3" Text=""></asp:ListItem>
                        <asp:ListItem Value="2" Text=""></asp:ListItem>
                        <asp:ListItem Value="1" Text=""></asp:ListItem>
                    </asp:RadioButtonList>后台插入数据库的代码这样
 GetScore(RadioButtonList1, ref ts_report_6, ref ts_report_5, ref ts_report_4, ref ts_report_3, ref ts_report_2, ref ts_report_1, ref ts_report_totail);
                //项目名称
                ts_part = Label1.Text;
                string SqlStr1 = "insert into DBA_ts_report(ts_pln_nbr,ts_nbr,ts_ship_to,ts_part,ts_slspsn,ts_report_5,ts_report_4,ts_report_3,ts_report_2,ts_report_1,ts_report_totail,ts_re) "
                    + "values('" + ts_pln_nbr + "','" + ts_nbr + "','" + ts_ship_to + "','" + ts_part + "','" + ts_slspsn + "'"
                    + ",'" + ts_report_5 + "','" + ts_report_4 + "','" + ts_report_3 + "','" + ts_report_2 + "','" + ts_report_1 + "','" + ts_report_totail + "','" + ts_re + "');";
后台数据库显示效果如下:
能否改成这样显示,这是我在excel做出的效果?