-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditPost.aspx
20 lines (19 loc) · 877 Bytes
/
EditPost.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@ Page Title="" Language="C#" MasterPageFile="~/Layout.master" AutoEventWireup="true" CodeFile="EditPost.aspx.cs" Inherits="EditPost" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolderBody" runat="Server">
<section class="row">
<div class="col-sm-12">
<h2><asp:Literal ID="LiteralPaginaTitel" runat="server"></asp:Literal></h2>
</div>
</section>
<section class="row">
<div class="col-sm-12">
<div class="form-group">
<asp:Label runat="server" Text="Post contents" AssociatedControlID="TextBoxContent"></asp:Label>
<asp:TextBox ID="TextBoxContent" runat="server" TextMode="MultiLine"></asp:TextBox>
</div>
<div class="form-group">
<asp:Button ID="ButtonSubmit" runat="server" Text="Submit" UseSubmitBehavior="true" CssClass="btn btn-primary" OnClick="ButtonSubmit_Click" />
</div>
</div>
</section>
</asp:Content>