-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQnAwrite.aspx
More file actions
50 lines (47 loc) · 4.36 KB
/
QnAwrite.aspx
File metadata and controls
50 lines (47 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<%@ Page Title="" Language="C#" MasterPageFile="~/Community.master" AutoEventWireup="true" CodeFile="QnAwrite.aspx.cs" Inherits="QnAwrite" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width:100%; background-color:#CCCCFF">
<tr>
<td colspan="3" style="text-align:center; vertical-align:middle; ">
<asp:Label ID="Label1" runat="server" BackColor="#CCCCFF" Text="QnA 글 등록" Width="100%" style="font-family: '맑은 고딕'; font-size: 24px; font-weight: 700; background:#000000; color:#ffffff"></asp:Label>
</td>
</tr>
<tr>
<td style="width:5%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; color:#ffffff; background-color:#424242; border:3px solid black;">
<asp:Label ID="Label2" runat="server" Text="작성자" style="font-family:'맑은 고딕'; font-size:20px" Height="35px"></asp:Label>
</td>
<td style="width:20%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#D8D8D8; border:3px solid black;" colspan="3">
<asp:TextBox ID="txtId" runat="server" ReadOnly="true" Width="800px" Height="35px" style="font-family:'맑은고딕'; background-color:#ffffff" OnTextChanged="txtId_TextChanged"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width:5%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700;color:#ffffff; background-color:#424242; border:3px solid black;">
<asp:Label ID="Label3" runat="server" Text="제목" Width="200px" style="font-family:'맑은 고딕'; font-size:20px" Height="35px"></asp:Label>
</td>
<td style="width:20%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#D8D8D8; border:3px solid black;" colspan="3">
<asp:TextBox ID="txtTitle" runat="server" style="width:800px; font-family:'맑은 고딕'; height:35px; background-color:#ffffff"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width:5%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700;color:#ffffff; background-color:#424242; border:3px solid black">
<asp:Label ID="Label4" runat="server" Text="내용" Width="200px" style="font-family:'맑은 고딕'; font-size:20px"></asp:Label>
</td>
<td style="width:20%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#D8D8D8; border:3px solid black;">
<asp:TextBox ID="txtContents" runat="server" Height="350px" Width="800px" TextMode="MultiLine" style="font-family:'맑은 고딕'; margin-left:2px; margin-top: 0px; background-color:#ffffff" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="width:5%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#424242; border:3px solid black"></td>
<td style="width:20%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#D8D8D8; border:3px solid black;">
<asp:Button ID="btnWirte" runat="server" Width="100px" Height="30px" OnClick="btnWirte_Click" Text="작성" style="margin-left:5px; margin-right:5px" CssClass="btn btn-dark"/>
<asp:Button ID="btnList" runat="server" CausesValidation="false" Width="100px" Height="30px" OnClick="btnList_Click" Text="목록" style="margin-left: 5px; margin-right: 5px" CssClass="btn btn-dark"/>
</td>
</tr>
<tr>
<td style="text-align:right; vertical-align:middle; font-family:'맑은 고딕'; width: 200px; background-color:#424242"></td>
<td style="width:20%; height:51px; text-align:center; font-family:'맑은 고딕'; font-size:16px; font-weight:700; background-color:#D8D8D8; border:3px solid black;">
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ForeColor="#CC0000" style="font-family:'맑은 고딕';" />
</td>
</tr>
</table>
</asp:Content>