Я хочу получить обратную связь лабораторий, классных комнат и всего отдела оборудования от студентов
Я создать веб-форму с помощью списка переключателей каждого списка переключателей содержат facitilty
то есть класс и классный объект, имеющий список радиобуттонов 1.Отлично 2.очень хорошо 3.Хорошо 4.средний.мне нужен код на c#, который добавляет ценность в объект в соответствии с радиобуттоном, выбранным в объекте.Также дайте мне схему базы данных.
Что я уже пробовал:
<div class="panel-body"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label style="font-size: large">1.Classrooms</label> <asp:RadioButtonList ID="rbclassrooms" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">2.Laboratories </label> <asp:RadioButtonList ID="dblab" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">3.Central Library </label> <asp:RadioButtonList ID="rbcentrallib" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">4. Cleanliness </label> <asp:RadioButtonList ID="rbclean" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">5. Central Computing Center </label> <asp:RadioButtonList ID="rbccc" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">6. Wi-Fi Facility </label> <asp:RadioButtonList ID="rbwifi" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">7. Hostel Facilities </label> <asp:RadioButtonList ID="rbhostel" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">8. Sport Facility </label> <asp:RadioButtonList ID="rbsport" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">9. College Bus Transport </label> <asp:RadioButtonList ID="rbcolgbus" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">10. Canteen Facility</label> <asp:RadioButtonList ID="rbcanteen" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">11. ATM Facility </label> <asp:RadioButtonList ID="rbatm" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">12. Counseling and Health Care </label> <asp:RadioButtonList ID="rbcounselingandhealth" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">13. Washroom and drinking water </label> <asp:RadioButtonList ID="rbwashroom" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> <div class="form-group"> <label style="font-size: large">14. Overall Facilities </label> <asp:RadioButtonList ID="rboverall" runat="server" RepeatDirection="Horizontal" CellSpacing="10"> <asp:ListItem style="margin-right:50px">Excellent <asp:ListItem style="margin-right:50px">Very Good <asp:ListItem style="margin-right:50px">Good <asp:ListItem style="margin-right:50px">Average </div> </div>
Это мой код веб-страницы.
<!-- /.col-lg-6 (nested) --> </div></div>
ZurdoDev
Нет. Мы не просто даем вам то, что вы хотите. Где ты застрял?