-
Notifications
You must be signed in to change notification settings - Fork 0
/
Error.aspx
27 lines (19 loc) · 936 Bytes
/
Error.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/first.Master" AutoEventWireup="true" CodeBehind="Error.aspx.cs" Inherits="CapstoneFinal.Error" %>
<asp:Content ID="Content1" ContentPlaceHolderID="nestedFirst" runat="server">
<asp:ScriptManager
ID="ScriptManager1"
runat="server"
>
</asp:ScriptManager>
<fieldset style="margin:20px; padding:20px; display:inline" >
<legend style="color:#450084; font-size:x-large;">Incorrect Data Format</legend>
<br />
<p>The values you inserted are not valid. Please ensure that the fields you are modifying stay the same datatype.</p>
<p>You will be redirected in 5 seconds to the homepage...</p>
<asp:Timer ID="Timer1" runat="server"
Interval="5000"
OnTick="Timer1_Tick">
</asp:Timer>
<br />
</fieldset>
</asp:Content>