/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/innovation/bp/bpdetails.aspx
130 строк
8 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="bpdetails.aspx.vb" Inherits="swatDetails" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>SWAT Project/Idea details</title> <link href="../Styles/page.css" rel="stylesheet" /> <link href="swat.css" rel="stylesheet" /> </head> <body> <form id="form1" runat="server"> <div> <asp:Panel runat ="server" id ="projectDeatails" class="projectdetails"> <table style="width: 780px;"> <tr> <td class="center"> <asp:Label ID="projectType" runat="server" Text="Project: " Font-Bold="True" Font-Size="X-Large"></asp:Label> <asp:Label ID="projectName" runat="server" Text="Automatic Label Paste machine" Font-Bold="True" Font-Size="X-Large"></asp:Label> <div style="float: right;"> <asp:Label ID="Score" runat="server" Text="Score: 8" Font-Size="Large"></asp:Label> </div> </td> </tr> <tr> <td class="center"><div id="pictureCaption" style="font-weight : bold; color: navy;" class="highlite1"></div> <asp:Image ID="projectImage" runat="server" CssClass="projectImage" /> <asp:HiddenField ID="pictureList" runat="server" /> </td> </tr> <tr> <td style="background-color: #FCFCAC;">Attachments:<br /> <asp:PlaceHolder ID="attachments" runat="server"></asp:PlaceHolder> </td> </tr> <tr> <td> <table style="width: 100%;"> <tr> <td style="width: 60%"> <div class="projectdescription"> <asp:Label runat="server" ID="description"></asp:Label> </div> </td> <td style="background-color:#D8F8C4; width: 40%"> <table id="voting" runat ="server" style="width: 200px;"> <tr> <td colspan="2" class="center"> <asp:Label ID="userId" runat="server" Font-Size="Large" Text="Label"></asp:Label> </td> </tr> <tr> <td colspan="2" class="center">Your score</td> </tr> <tr> <td> <asp:Label ID="criteria1" runat="server" Text="Eff. Amt." style="font-weight: 700"></asp:Label> </td> <td class="center"> <asp:DropDownList ID="criteria1Score" runat="server" ToolTip ="финансовый эффект (финансовый вес) внедрённого проекта"> <asp:ListItem Selected="True">0</asp:ListItem> <asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> </asp:DropDownList> </td> </tr> <tr> <td> <asp:Label ID="criteria2" runat="server" Text="Innovation" style="font-weight: 700"></asp:Label> </td> <td class="center"> <asp:DropDownList ID="criteria2Score" runat="server" ToolTip="инновационность внедрённого проекта (его оригинальность и новизна в рамках SERK и заводов SAMSUNG в целом)"> <asp:ListItem Selected="True">0</asp:ListItem> <asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> </asp:DropDownList> </td> </tr> <tr> <td> <asp:Label ID="criteria3" runat="server" Text="Implement" style="font-weight: 700"></asp:Label> </td> <td class="center"> <asp:DropDownList ID="criteria3Score" runat="server" ToolTip="Возможность внедрения проекта на других заводах SAMSUNG по всему миру "> <asp:ListItem Selected="True">0</asp:ListItem> <asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> </asp:DropDownList> </td> </tr> <tr> <td colspan="2" class="center"> <asp:TextBox ID="comment" runat="server" TextMode ="MultiLine" Width="100%"></asp:TextBox> </td> </tr> <tr> <td class="center" colspan="2"> <asp:PlaceHolder ID="buttonsPlaceHolder" runat="server"> <asp:ImageButton ID="save" runat="server" ImageUrl="~/Images/Save.png" /> <asp:ImageButton ID="clear" runat="server" ImageUrl="~/Images/Cancel.png" /> </asp:PlaceHolder> </td> </tr> </table> <div id="notAuth" runat ="server" style="margin: 0 auto; font-size: large; widht: 200px; background-color:#FCCCBC; text-align: center;"> You can't evaluate </div> </td> </tr> </table> </td> </tr> <tr> <td class="center"> </td> </tr> </table> </asp:Panel> </div> </form> </body> </html>