-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpost.aspx
More file actions
22 lines (20 loc) · 1.01 KB
/
post.aspx
File metadata and controls
22 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ Page Title="" Language="C#" MasterPageFile="~/nav.master" AutoEventWireup="true" CodeFile="Post.aspx.cs" Inherits="Post" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<article id='post_container' runat='server'>
<h5>
<asp:label id='post_title' runat='server'></asp:label>
</h5>
<p id='post_content' runat='server'></p>
<hr />
<div class='multiline-submit'>
<asp:TextBox id='txtComment_content' runat='server' TextMode="MultiLine" rows='3' placeholder='O que vc quer dizer?'></asp:TextBox><br />
<asp:button id='btnComment' runat='server' text='postar' onclick='btnComment_click'></asp:button>
</div>
</article>
<div id='comments_container' runat='server'>
</div>
<asp:SqlDataSource ID="Sqlds1" runat="server" ConnectionString="<%$ ConnectionStrings:rinfConnectionString %>" ProviderName="<%$ ConnectionStrings:rinfConnectionString.ProviderName %>">
</asp:SqlDataSource>
</asp:Content>