add web form index- page

This commit is contained in:
ismail 2018-06-08 15:32:45 +02:00
parent 9c33ad24cd
commit 00b16d5346
4 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebFormIndex.aspx.cs" Inherits="Web_Server_EHEC.WebFormIndex" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Web_Server_EHEC
{
public partial class WebFormIndex : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}

View File

@ -0,0 +1,26 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Web_Server_EHEC
{
public partial class WebFormIndex
{
/// <summary>
/// form1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
}
}

View File

@ -77,6 +77,7 @@
<Reference Include="System.EnterpriseServices" />
</ItemGroup>
<ItemGroup>
<Content Include="WebFormIndex.aspx" />
<EntityDeploy Include="Model\EHEC_DB_Model.edmx">
<Generator>EntityModelCodeGenerator</Generator>
<LastGenOutput>EHEC_DB_Model.Designer.cs</LastGenOutput>
@ -108,6 +109,7 @@
<Content Include="Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="DAL\PatientDAL.cs" />
<Compile Include="IService.cs" />
<Compile Include="Model\Doctor.cs">
<DependentUpon>EHEC_DB_Model.tt</DependentUpon>
@ -146,10 +148,18 @@
<Compile Include="Service.svc.cs">
<DependentUpon>Service.svc</DependentUpon>
</Compile>
<Compile Include="WebFormIndex.aspx.cs">
<DependentUpon>WebFormIndex.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebFormIndex.aspx.designer.cs">
<DependentUpon>WebFormIndex.aspx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<ItemGroup />
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>