-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddQuestion.aspx
More file actions
17 lines (15 loc) · 1.78 KB
/
AddQuestion.aspx
File metadata and controls
17 lines (15 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ Page Title="" Language="C#" MasterPageFile="~/User.master" AutoEventWireup="true" CodeFile="AddQuestion.aspx.cs" Inherits="Default2" %>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Label ID="Msg" runat="server"></asp:Label>
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="Question"></asp:Label><br />
<asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine" Height="137px" Width="761px"></asp:TextBox><br />
<asp:Label ID="Label2" runat="server" Text="Code(Description)*"></asp:Label><br />
<asp:TextBox ID="TextBox2" runat="server" TextMode="MultiLine" Height="145px" Width="761px"></asp:TextBox><br />
<p style="color:red">*Optional</p>
<br />
<asp:Button class="btn btn-primary" ID="Button2" runat="server" Text="Submit" OnClick="Button2_Click" />
</asp:Content>