ASP.NET 기초 게시판/ExcelBoard
페이지_ BoardWrite.aspx
이빛나리
2011. 2. 22. 19:12
타이틀
<div id="contsTitleBox">
<div class="contsTitleStr">엑셀데이터 <a href="/Board/ExcelData/">[목록보기]</a></div>
</div>
글쓰기
버튼
<div class="btnsBox textCenter">
<asp:Button ID="BtnManager" CssClass="btn_style_button" runat="server" Text="등록완료" OnClientClick="return sendit();" onclick="BtnManager_Click" />
<asp:Button ID="Button1" CssClass="btn_style_button" runat="server" Text="등록취소" OnClientClick="return reset();" />
</div>
<div id="contsTitleBox">
<div class="contsTitleStr">엑셀데이터 <a href="/Board/ExcelData/">[목록보기]</a></div>
</div>
글쓰기
<table class="SearchTable">
<tr>
<th width="10%">학기</th>
<td width="90%">
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>
</td>
</tr>
<tr>
<th>제목</th>
<td><input type="text" name="bTitle" id="bTitle" runat="server" style="width:90%" /></td>
</tr>
<tr>
<td colspan="2" align="center"><textarea id="bContent" runat="server" name="content" style="width:98%; height:200px;"></textarea></td>
</tr>
<tr>
<th>첨부파일</th>
<td><asp:FileUpload ID="bFile" style="width:90%" runat="server" /></td>
</tr>
</table>
<tr>
<th width="10%">학기</th>
<td width="90%">
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>
</td>
</tr>
<tr>
<th>제목</th>
<td><input type="text" name="bTitle" id="bTitle" runat="server" style="width:90%" /></td>
</tr>
<tr>
<td colspan="2" align="center"><textarea id="bContent" runat="server" name="content" style="width:98%; height:200px;"></textarea></td>
</tr>
<tr>
<th>첨부파일</th>
<td><asp:FileUpload ID="bFile" style="width:90%" runat="server" /></td>
</tr>
</table>
버튼
<div class="btnsBox textCenter">
<asp:Button ID="BtnManager" CssClass="btn_style_button" runat="server" Text="등록완료" OnClientClick="return sendit();" onclick="BtnManager_Click" />
<asp:Button ID="Button1" CssClass="btn_style_button" runat="server" Text="등록취소" OnClientClick="return reset();" />
</div>