Физическая структура базы данных. Аппаратное и программное обеспечение системы.Реализация интерфейса пользователя, страница 10

В процессе выполнения курсового проекта был приобретён практический опыт работы с компонентами среды MS Visual Web Developer 2008 для создания ASP.NET  страниц и навык работы с  СУБД MS SQL Server 2012.

Данная курсовая работа помогла освоить не только практические, но и теоретические знания.

СПИСОК ИСПОЛЬЗОВАННЫХ ИСТОЧНИКОВ

1.  Хомоненко А.Д., Цыганков В.М., Мальцев М.Г. Базы данных: Учебник для высших учебных заведений / Под ред. проф. А.Д. Хомоненко. – 5-е изд., доп. – М.: Бином-Пресс; СПб.: КОРОНА принт, 2006. -736 с.

2.  Эспозито Д. Знакомство с Microsoft ASP.NET 2.0 - Москва; Санкт-Петербург: Русская редакция: Питер, 2006. - 490 с.

3.  Википедия, свободная энциклопедия / Д.Уэльс и Л.Сэнгер.//Основы ASP.NET [Электронный ресурс].-Режим доступа: http://ru.wikipedia.org

Дата доступа: 10.05.2014.

4.  Гаряка  А.А. Основы ASP.NET 2.0/ [Электронный ресурс].-Режим доступа: http://www.intuit.ru/department/se/aspdotnet/

Дата доступа: 13.05.2014.

5.  Магдануров Г.  Разработка веб-приложений на ASP.NET/ [Электронный ресурс].-Режим доступа:

http://www.intuit.ru/department/internet/webdevaspnet/

Дата доступа: 13.05.2014.

ПРИЛОЖЕНИЕ А

Тексты программных модулей

Листингстраницы-шаблона  MyMaster.Master

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="WebApplication1.SiteMaster" %>

<!DOCTYPE html>

<html lang="ru">

<head runat="server">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<meta charset="utf-8" />

<title><%: Page.Title %> Брачное агенство ASP.NET </title>

<asp:PlaceHolder runat="server">    

<%: Scripts.Render("~/bundles/modernizr") %>

</asp:PlaceHolder> 

<webopt:BundleReference runat="server" Path="~/Content/css" />

<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />

<link rel="stylesheet" type="text/css" href="a.css"><%--подключение стиля меню --%>

<meta name="viewport" content="width=device-width" />

<asp:ContentPlaceHolder runat="server" ID="HeadContent" />

<link rel="stylesheet" href="styl.css" type="text/css" media="screen" />

<script type="text/javascript" src="jquery-1.3.2.js"></script>

</head>

<body>

<form runat="server">

<asp:ScriptManager runat="server">

<Scripts>

<%--Framework Scripts--%>

<asp:ScriptReference Name="MsAjaxBundle" />

<asp:ScriptReference Name="jquery" />

<asp:ScriptReference Name="jquery.ui.combined" />

<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />

<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />

<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />

<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />

<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />

<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />

<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />