-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSubmit.aspx
More file actions
146 lines (112 loc) · 4.69 KB
/
Submit.aspx
File metadata and controls
146 lines (112 loc) · 4.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<%@ Page Language="C#" MasterPageFile="~/getputs_A.master" AutoEventWireup="true" CodeFile="Submit.aspx.cs" Inherits="Submit" Title="getputs - Submit" ValidateRequest="false"%>
<%@ Register TagPrefix="recaptcha" Namespace="Recaptcha" Assembly="Recaptcha" %>
<asp:Content ID="Main" ContentPlaceHolderID="Main" Runat="Server">
<asp:Label ID="ExplanationLabel" runat="server"></asp:Label><br />
<br />
<asp:Label ID="MessageLabel" runat="server" Width="500px"></asp:Label>
<br />
<br />
<table id="SubmitTable">
<tr>
<td style="width: 70px">
<asp:Label ID="LinkLabel" runat="server" Text="Link"></asp:Label></td>
<td style="width: auto;">
<asp:TextBox ID="LinkTB" runat="server" Width="388px"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 70px">
</td>
<td>
<asp:Button id="GetTitleButton" runat="server" Text="Get Title" OnClick="GetTitleButton_Click"/>
<br />
<asp:Literal ID="GetTitleOutputLiteral" Text="" runat="server"></asp:Literal>
<br />
<br />
</td>
</tr>
<tr>
<td style="width: 70px">
<asp:Label ID="TitleLabel" runat="server" Text="Title"></asp:Label></td>
<td style="width: auto;">
<asp:TextBox ID="TitleTB" TextMode="MultiLine" runat="server" Width="388px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 70px; height: 26px">
<asp:Label ID="CategoryLabel" runat="server" Text="Category"></asp:Label></td>
<td style="width: auto; height: 26px">
<asp:DropDownList ID="CategoryDDL" runat="server">
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 70px">
<asp:Label ID="TextLabel" runat="server" Text="Text"></asp:Label></td>
<td style="width: auto;">
<asp:TextBox ID="TextTB" runat="server" MaxLength="500" TextMode="MultiLine" Height="100px" Width="388px"></asp:TextBox></td>
</tr>
<tr>
<td>
<br />
</td>
<td>
<br />
</td>
</tr>
<tr>
<!--
<td>
</td>
<td>
<img src="JpegImage.aspx" alt="Captcha" />
<br />
<asp:Label ID="ReCaptchaLabel_X" runat="server" Text="Enter the Digits: "></asp:Label>
<asp:TextBox ID="CodeNumberTextBox" runat="server" Width="50px"></asp:TextBox>
</td>
-->
</tr>
<tr>
<td>
<br />
</td>
<td>
<br />
</td>
</tr>
<tr>
<td style="width: 70px">
</td>
<td align="right" style="width: 400px">
<asp:Button ID="SubmitButton" runat="server" OnClick="SubmitButton_Click"
Text="Submit" />
</td>
</tr>
</table>
<br />
<br />
<div id="GuideLinesDiv">
Guidelines for Posting:
<br />
<br />
A few things to consider while posting:
<br />
* Post anything interesting:
<br />
News <br />
Classifieds <br />
Questions that you want the getputs Community to Answer <br />
Articles <br />
Blogs <br />
Video <br />
Pictures <br />
* Post things you think are worth reading.
<br />
* Link to the original source, not a site that is copying someone else's work.
<br />
* Do not post links that contain spam, pornography, or profanity.
<br />
</div>
</asp:Content>