init ch78

This commit is contained in:
EggMan20339
2024-03-18 10:09:13 -04:00
parent 2cdb6b8598
commit 857d397840
216 changed files with 148929 additions and 1 deletions

View File

@@ -121,6 +121,10 @@
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs"/>
<Compile Include="test.aspx.cs">
<SubType>ASPXCodeBehind</SubType>
<DependentUpon>test.aspx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap-theme.css"/>
@@ -144,6 +148,7 @@
<Content Include="Scripts\jquery.validate.unobtrusive.js"/>
<Content Include="Scripts\jquery.validate.unobtrusive.min.js"/>
<Content Include="Scripts\modernizr-2.8.3.js"/>
<Content Include="test.aspx" />
<Content Include="Web.config"/>
<Content Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>

View File

@@ -0,0 +1,20 @@
<%@ Page Language="C#" CodeBehind="test.aspx.cs" Inherits="CNSA_216_Personal_v2.test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Title</title>
</head>
<body>
<form id="HtmlForm" runat="server">
<div>
<input type="reset">
</div>
</form>
</body>
</html>

View File

@@ -0,0 +1,13 @@
using System;
using System.Web.UI;
namespace CNSA_216_Personal_v2
{
public partial class test : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}