제목 : [4] 일정 수정 / 삭제 : ~/Schedule/ScheduleView.ascx
글번호:
|
|
249
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2008/07/02 오전 10:34:00
|
조회수:
|
|
4430
|
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ScheduleView.ascx.cs"
Inherits="Schedule_ScheduleViewControl" %>
<table border="1" style="width: 100%">
<tr>
<td colspan="2" style="text-align: center">
<h3>
스케줄 상세보기(수정 및 삭제)</h3>
</td>
</tr>
<tr>
<td style="width: 80px">
일시:
</td>
<td>
<asp:DropDownList ID="lstYear" runat="server">
</asp:DropDownList>
<asp:DropDownList ID="ddlMonth" runat="server">
</asp:DropDownList>
<asp:DropDownList ID="comDay" runat="server">
</asp:DropDownList>
<asp:DropDownList ID="ctlHour" runat="server">
</asp:DropDownList>
</td>
</tr>
<tr>
<td style="width: 80px">
제목:
</td>
<td>
<asp:TextBox ID="txtTitle" runat="server" Width="400px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 80px">
내용:
</td>
<td>
<asp:TextBox ID="txtContent" runat="server" Height="150px" TextMode="MultiLine" Width="400px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<asp:Button ID="btnModify" runat="server" Text="수정" OnClick="btnModify_Click" />
<asp:Button ID="btnDelete" runat="server" Text="삭제" OnClick="btnDelete_Click" />
<asp:Button ID="btnList" runat="server" Text="리스트" OnClick="btnList_Click" />
</td>
</tr>
</table>