Вход

Разработка информационно-справочной системы технической поддержки пользователей сети телефонной сети

Рекомендуемая категория для самостоятельной подготовки:
Дипломная работа*
Код 184107
Дата создания 2014
Страниц 100
Источников 10
Мы сможем обработать ваш заказ (!) 22 апреля в 12:00 [мск]
Файлы будут доступны для скачивания только после обработки заказа.
4 570руб.
КУПИТЬ

Содержание

Оглавление
Введение 6
1. Информационные потоки в службе технической поддержки пользователей 9
2. Постановка задачи 15
3. Принцип разработки 16
3.1. Описание общей архитектуры приложения 16
3.2. Выбор инструментальных средств 20
4. Реализация информационной системы 24
4.1. Описание веб-приложения 24
4.2. Выбор хостинга и выкладывание приложения на веб-сервер 34
4.3. Тестирование, отладка и внедрение системы 41
Заключение 43
СПИСОК ЛИТЕРАТУРЫ 44
Приложение 45

Фрагмент работы для ознакомления

Collections;
using System.Configuration;
using System.Diagnostics;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Text;
using System.IO;
using System.Data.SqlClient;
namespace aspnet_1
{
public partial class Site3 : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// ////////////////////////////////////////////////////////////////////
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Button1_Click(object sender, EventArgs e)
{
string websitePath = Request.PhysicalApplicationPath;
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString =
@"Data Source=localhost\SQLEXPRESS;" +
@"User Instance=True; AttachDBFilename = " +
websitePath +
"App_Data\\Database1.mdf;" +
"Integrated Security=True";
try
{
myConnection.Open();
Label1.Text = "<b>Server Version:</b> " + myConnection.ServerVersion;
Label1.Text += "<br /><b>Connection Is:</b> " +
myConnection.State.ToString();
}
catch (Exception err)
{
// Handle an error by displaying the information.
Label1.Text = "Error reading the database. ";
Label1.Text += err.Message;
}
finally
{
bool added;
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = " INSERT INTO users (users,passw,data)" +
"VALUES ('" +
TextBox1.Text +
"','" +
TextBox2.Text+
"','" +
TextBox3.Text +
"') ";
myCommand.ExecuteNonQuery();
myCommand.Clone();
myConnection.Close();
Label11.Text += "<br /><b>Now Connection Is:</b> ";
Label11.Text += myConnection.State.ToString();
Response.Redirect("Default.aspx");

}//try connection
}
}
}
using System;
using System.Collections;
using System.Configuration;
using System.Diagnostics;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Text;
using System.IO;
using System.Data.SqlClient;
using System.Runtime.InteropServices;
using Word = Microsoft.Office.Interop.Word;
namespace aspnet_1
{
public partial class Site1 : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
// Server.Transfer("HTMLPage1.htm");
string websitePath = Request.PhysicalApplicationPath;
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString =
@"Data Source=localhost\SQLEXPRESS;" +
@"User Instance=True; AttachDBFilename = " +
websitePath +
"App_Data\\Database1.mdf;" +
"Integrated Security=True";
try
{
myConnection.Open();
lblInfo.Text = "<b>Server Version:</b> " + myConnection.ServerVersion;
lblInfo.Text += "<br /><b>Connection Is:</b> " +
myConnection.State.ToString();
}
catch (Exception err)
{
// Handle an error by displaying the information.
lblInfo.Text = "Error reading the database. ";
lblInfo.Text += err.Message;
}
finally
{
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = "SELECT * FROM users ORDER BY users ";
SqlDataReader myReader;
myReader = myCommand.ExecuteReader();
lstNames.Items.Clear();
while (myReader.Read())// The first row in the result set is now available.
{
lstNames.Items.Add(myReader["users"] + ", " + myReader["passw"] + ", " + myReader["data"]);
}
myReader.Close();
myConnection.Close();
lblInfo.Text += "<br /><b>Now Connection Is:</b> ";
lblInfo.Text += myConnection.State.ToString();
}
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("Default.aspx");
}
/// <summary>
/// ///////////////////////////////////////////
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Button3_Click(object sender, EventArgs e)
{
// Server.Transfer("HTMLPage1.htm");
string websitePath = Request.PhysicalApplicationPath;
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString =
@"Data Source=localhost\SQLEXPRESS;" +
@"User Instance=True; AttachDBFilename = " +
websitePath +
"App_Data\\Database1.mdf;" +
"Integrated Security=True";
try
{
myConnection.Open();
lblInfo.Text = "<b>Server Version:</b> " + myConnection.ServerVersion;
lblInfo.Text += "<br /><b>Connection Is:</b> " +
myConnection.State.ToString();
}
catch (Exception err)
{
// Handle an error by displaying the information.
lblInfo.Text = "Error reading the database. ";
lblInfo.Text += err.Message;
}
finally
{
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = "SELECT * FROM produce ";
SqlDataReader myReader;
myReader = myCommand.ExecuteReader();
lstNames.Items.Clear();
while (myReader.Read())// The first row in the result set is now available.
{
lstNames.Items.Add(myReader["user_log"] + ", " + myReader["tovar"] +
", " + myReader["pict_file"]+
", " + myReader["price"]);
}
myReader.Close();
myConnection.Close();
lblInfo.Text += "<br /><b>Now Connection Is:</b> ";
lblInfo.Text += myConnection.State.ToString();
}
}
/// <summary>
/// ////////////////////////////////////////////////////
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Button4_Click(object sender, EventArgs e)
{
Word.Application wordapp;
try
{
wordapp = new Word.Application();
wordapp.Visible = true;
Object template = Type.Missing;
Object newTemplate = false;
Object documentType = Word.WdNewDocumentType.wdNewBlankDocument;
Object visible = true;
//Ñîçäàåì äîêóìåíò 1

//Ìåíÿåì øàáëîí
string websitePath = Request.PhysicalApplicationPath;
template = websitePath+"a1.doc";
Word.Document worddocument;
worddocument =
wordapp.Documents.Add(
ref template, ref newTemplate, ref documentType, ref visible);
Word.Paragraphs wordparagraphs;
Word.Paragraph wordparagraph;
wordparagraphs = worddocument.Paragraphs;
//Áóäåì ðàáîòàòü ñ ïåðâûì ïàðàãðàôîì
wordparagraph = (Word.Paragraph)wordparagraphs[1];
//Îïðåäåëÿåì äëÿ ÷åãî ñîçäàåòñÿ ñòèëü: wdStyleTypeTable,
//wdStyleTypeList, wdStyleTypeParagraph, wdStyleTypeCharacter
object patternstyle = Word.WdStyleType.wdStyleTypeParagraph;
Word.Style wordstyle = worddocument.Styles.Add("myStyle", ref patternstyle);
//Óñòàíàâëèâàåì ïàðàìåòðû øðèôòà
wordstyle.Font.Size = 30;
wordstyle.Font.Italic = 1;
wordstyle.Font.Bold = 1;
//Óñòàíàâëèâàåì ïàðàìåòðû ïàðàãðàôà
wordstyle.ParagraphFormat.LeftIndent
= worddocument.Content.Application.CentimetersToPoints((float)2);
wordstyle.ParagraphFormat.RightIndent
= worddocument.Content.Application.CentimetersToPoints((float)2);
object begin = Type.Missing;
Object end = Type.Missing;
Word.Range wordrange = worddocument.Range(ref begin, ref end);
object oWordStyle = wordstyle;
wordrange.set_Style(ref oWordStyle);
lblInfo.Text = wordparagraph.Range.Text;
wordparagraph.Range.Text = "Òåêñò êîòîðûé ìû âûâîäèì â 1 àáçàö";
//Ìåíÿåì õàðàêòåðèñòèêè òåêñòà è ïàðàãðàôà
wordparagraph.Range.Font.Color = Word.WdColor.wdColorBlue;
wordparagraph.Range.Font.Size = 20;
wordparagraph.Range.Font.Name = "Arial";
wordparagraph.Range.Font.Italic = 1;
wordparagraph.Range.Font.Bold = 0;
wordparagraph.Range.Font.Underline = Word.WdUnderline.wdUnderlineSingle;
wordparagraph.Range.Font.UnderlineColor = Word.WdColor.wdColorDarkRed;
Object fileName = websitePath + "a2.doc";
Object fileFormat = Word.WdSaveFormat.wdFormatDocument;
Object lockComments = false;
Object password = "";
Object addToRecentFiles = false;
Object writePassword = "";
Object readOnlyRecommended = false;
Object embedTrueTypeFonts = false;
Object saveNativePictureFormat = false;
Object saveFormsData = false;
Object saveAsAOCELetter = Type.Missing;
Object encoding = Type.Missing;
Object insertLineBreaks = Type.Missing;
Object allowSubstitutions = Type.Missing;
Object lineEnding = Type.Missing;
Object addBiDiMarks = Type.Missing;
#if OFFICEXP
worddocument.SaveAs2000(ref fileName,
#else
worddocument.SaveAs(ref fileName,
#endif
ref fileFormat, ref lockComments,
ref password, ref addToRecentFiles, ref writePassword,
ref readOnlyRecommended, ref embedTrueTypeFonts,
ref saveNativePictureFormat, ref saveFormsData,
ref saveAsAOCELetter, ref encoding, ref insertLineBreaks,
ref allowSubstitutions, ref lineEnding, ref addBiDiMarks);
Object saveChanges = Word.WdSaveOptions.wdPromptToSaveChanges;
Object originalFormat = Word.WdOriginalFormat.wdWordDocument;
Object routeDocument = Type.Missing;
//((Word._Application)wordapp).Quit(ref saveChanges,
// ref originalFormat, ref routeDocument);

//wordapp = null;
}
catch (Exception ex)
{
lblInfo.Text = ex.Message;
}

}
}
}
using System;
using System.Collections;
using System.Configuration;
using System.Diagnostics;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Text;
using System.IO;
using System.Data.SqlClient;
namespace aspnet_1
{

public partial class Site2 : System.Web.UI.MasterPage
{
public Product saleProduct;
public string login_user;
public Site2()
{

login_user = "xxx";
}
public void ChangeDetected()
{
// This code executes in response to the PriceChanged event.
int qqq = 0;
//saleProduct = null;
}
protected void Page_Load(object sender, EventArgs e)
{
FileUpload1.Visible = false;
Button2.Visible = false;
TextBox3.Visible = false;
TextBox4.Visible = false;
Label3.Visible = false;
Label4.Visible = false;
Label5.Visible = false;
}
protected void Button1_Click(object sender, EventArgs e)
{
string pass = TextBox1.Text + TextBox2.Text;
string pass1;
int passed = 0;
string websitePath = Request.PhysicalApplicationPath;
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString =
@"Data Source=localhost\SQLEXPRESS;" +
@"User Instance=True; AttachDBFilename = " +
websitePath +
"App_Data\\Database1.mdf;" +
"Integrated Security=True";
try
{
myConnection.Open();
Label2.Text = "<b>Server Version:</b> " + myConnection.ServerVersion;
Label2.Text += "<br /><b>Connection Is:</b> " +
myConnection.State.ToString();
}
catch (Exception err)
{
// Handle an error by displaying the information.
Label2.Text = "Error reading the database. ";
Label2.Text += err.Message;
}
finally
{
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = "SELECT * FROM users ORDER BY users ";
SqlDataReader myReader1;
myReader1 = myCommand.ExecuteReader();
while (myReader1.Read())// The first row in the result set is now available.
{
pass1 = myReader1["users"].ToString().Trim()+ myReader1["passw"].ToString().Trim();
pass1 = pass1.Trim();
if (pass == pass1) { passed = 1; }

}
myReader1.Close();

Label2.Text += "<br /><b>Now Connection Is:</b> ";
Label2.Text += myConnection.State.ToString();

if (passed==1)
{
login_user = TextBox1.Text.Trim();
System.Text.StringBuilder sb = new System.Text.StringBuilder();
myCommand.CommandText = "SELECT * FROM produce WHERE user_log='" + TextBox1.Text + "' ORDER BY user_log";
SqlDataReader myReader2;
myReader2 = myCommand.ExecuteReader();
Label1.Text = "<br /><b>your data are:</br> ";
sb.Append("<br>");
while (myReader2.Read())// The first row in the result set is now available.
{
sb.Append("<b>Produse Type:</b> ");
sb.Append(myReader2["tovar"].ToString().Trim());
sb.Append("<b>Picture file is:</b> ");
sb.Append(myReader2["pict_file"].ToString().Trim());
sb.Append("<b> price: </b> ");
sb.Append(myReader2["price"].ToString().Trim());
sb.Append("<br /><br />");
}
Label1.Text = Label1.Text + sb.ToString();
FileUpload1.Visible = true;
Button2.Visible = true;
TextBox2.Visible = true;
TextBox3.Visible = true;
TextBox4.Visible = true;
Label3.Visible = true;
Label4.Visible = true;
Label5.Visible = true;
Button3.Visible = false;
myReader2.Close();
}
else
{
Label1.Text = "<br /><b>login-password are not true</b>";
}
myConnection.Close();
}//finally
}
/// <summary>
/// ///////////////////////////////////////////////////////
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Button2_Click(object sender, EventArgs e)
{
string websitePath = Request.PhysicalApplicationPath;

string name_p="";
if (FileUpload1.HasFile)
try
{
name_p = FileUpload1.FileName.Substring(0, FileUpload1.FileName.IndexOf("."));
name_p = TextBox3.Text;
FileUpload1.SaveAs(
websitePath + "base_im/" + name_p + ".jpeg"

);
Label1.Text = "File name: " +
FileUpload1.PostedFile.FileName + "<br>" +
FileUpload1.PostedFile.ContentLength + " kb<br>" +
"Content type: " +
FileUpload1.PostedFile.ContentType;
}
catch (Exception ex)
{
Label1.Text = "ERROR: " + ex.Message.ToString();
}
else
{
Label1.Text = "You have not specified a file.";
}
if (!(TextBox3.Text.Trim() == ""))
{
if (saleProduct == null)
{
saleProduct = new Product(TextBox3.Text, Int32.Parse(TextBox4.Text));
}
saleProduct.PriceChanged += ChangeDetected;
saleProduct.Price = saleProduct.Price + 1;
saleProduct.ImageUrl = "http://localhost:"+
Request.Url.Port.ToString()+
"/base_im/" + name_p +".jpeg";
Response.Write(saleProduct.GetHtml());
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString =
@"Data Source=localhost\SQLEXPRESS;" +
@"User Instance=True; AttachDBFilename = " +
websitePath +
"App_Data\\Database1.mdf;" +
"Integrated Security=True";
try
{
myConnection.Open();
Label1.Text = "<b>Server Version:</b> " + myConnection.ServerVersion;
Label1.Text += "<br /><b>Connection Is:</b> " +
myConnection.State.ToString();
}
catch (Exception err)
{
// Handle an error by displaying the information.
Label1.Text = "Error reading the database. ";
Label1.Text += err.Message;
}
finally
{
bool added;
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection;
myCommand.CommandText = " INSERT INTO produce (tovar,user_log,pict_file,price)" +
"VALUES ('" +
TextBox3.Text +
"','" +
TextBox1.Text
+ "','" +

name_p +".jpeg"+
"','" +
TextBox4.Text+
"') ";
//myCommand.CommandText = " INSERT INTO produce (tovar,user_log,pict_file)" +
// "VALUES ('qwe','qq','wre') ";
myCommand.ExecuteNonQuery();

System.Text.StringBuilder sb = new System.Text.StringBuilder();
myCommand.CommandText = "SELECT * FROM produce WHERE user_log='" + TextBox1.Text + "' ORDER BY user_log";
SqlDataReader myReader2;
myReader2 = myCommand.ExecuteReader();
Label1.Text = "<br /><b>your data are:</br> ";
sb.Append("<br>");

while (myReader2.Read())// The first row in the result set is now available.
{

sb.Append("<b> Produse Type:</b> ");
sb.Append(myReader2["tovar"].ToString().Trim());
sb.Append("<b> Picture file is:</b> ");
sb.Append(myReader2["pict_file"].ToString().Trim());
sb.Append("<b> price: </b> ");
sb.Append(myReader2["price"].ToString().Trim());
sb.Append("<br /><br />");

sb.Append("<br /><br />");
}
Label1.Text = Label1.Text + sb.ToString();
myConnection.Close();
Label1.Text += "<br /><b>Now Connection Is:</b> ";
Label1.Text += myConnection.State.ToString();


Label2.Text += "<br /><b>Now Connection Is:</b> ";
Label2.Text += myConnection.State.ToString();

}//try connection
}//if(!(TextBox3.Text.Trim()==""))

}
protected void TextBox4_TextChanged(object sender, EventArgs e)
{
}
protected void Button3_Click(object sender, EventArgs e)
{
Response.Redirect("WebForm4.aspx");
}
}
}
<?xml version="1.0"?>
<configuration>

<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<appSettings/>


<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</controls>
</pages>


<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules>
</system.web>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/>
</compiler>
</compilers>
</system.codedom>
<!--
The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS.
-->
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<remove name="ScriptModule"/>
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/>
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="third_page.Master.cs" Inherits="aspnet_1.Site2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
#form1
{
height: 105px;
}
#Button3
{
width: 154px;
}
</style>
<script language="javascript" type="text/javascript">
// <!CDATA[
// ]]>
</script>
</head>
<body style="text-align: left; background-image: url('base_im/qwerty.jpeg'); visibility: visible;">
<form id="form1" runat="server" dir="ltr" visible="True">
<div style="font-style: oblique; font-variant: inherit; color: #808080; font-family: Andalus">
<br />
<br />
âõîä çàðåãèñòðèðîâàííîãî ïîëüçîâàòåëÿ<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

</asp:ContentPlaceHolder>
</div>
<p>
ëîãèí&nbsp;&nbsp;&nbsp;&nbsp; <asp:TextBox ID="TextBox1" runat="server" Width="134px"></asp:TextBox>
</p>
<p>
ïàðîëü&nbsp;&nbsp;&nbsp;&nbsp; <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</p>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="âõîä"
Width="160px" BackColor="Red" BorderColor="#FF3399" ForeColor="#6600FF" />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:FileUpload ID="FileUpload1" runat="server" />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Label ID="Label3" runat="server" Text="çàãðóçèòü èçîáðàæåíèå"></asp:Label>
<br />
<asp:Button ID="Button3" runat="server" onclick="Button3_Click"
Text="íîâûé ïîëüçîâàòåëü" Width="156px" BackColor="#FF66CC" />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Label ID="Label4" runat="server" Text="èìÿ ïðîäóêòà"></asp:Label>
&nbsp;&nbsp;&nbsp;&nbsp;
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Label ID="Label5" runat="server" Text="öåíà"></asp:Label>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:TextBox ID="TextBox4" runat="server" ontextchanged="TextBox4_TextChanged"></asp:TextBox>
<p>
<asp:Label ID="Label2" runat="server" Text=" "></asp:Label>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
Text="çàãðóçèòü è îáíîâèòü" BackColor="#99CCFF" />
</p>
<p>
&nbsp;</p>
<p>
<asp:Label ID="Label1" runat="server" BorderStyle="Solid"></asp:Label>
</p>
</form>
</body>
</html>
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="second_page.Master.cs" Inherits="aspnet_1.Site1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
#form1
{
height: 109px;
}
</style>
</head>
<body style="text-align: left; background-image: url('base_im/qwerty.jpeg'); visibility: visible;">
<form id="form1" runat="server">
<div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

<p>
<br />
</p>
<p>
</p>
<p>
</p>
<p>
&nbsp;</p>

</asp:ContentPlaceHolder>
</div>
<p>
&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"
style="height: 26px" Text="âñå ïîëüçîâàòåëè" Width="199px" />
&nbsp;&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button3" runat="server" onclick="Button3_Click"
Text="âñå òîâàðû" Width="201px" />
</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
style="margin-bottom: 44px; margin-left: 0px;" Text="íàçàä" Width="202px" />
</p>
<p>
&nbsp;</p>
<asp:Label ID="lblInfo" runat="server" Text=" "></asp:Label>
<p>
<asp:ListBox ID="lstNames" runat="server" Height="114px" Width="429px">
</asp:ListBox>
</p>
<p>
<asp:Button ID="Button4" runat="server" onclick="Button4_Click"
Text="âûâîä îò÷åòà" Width="129px" />
</p>
<p>
&nbsp;</p>
<p>
&nbsp;</p>
</form>
<p>
&nbsp;</p>
</body>
</html>
105
Работа завершена:
«__»__________2014 г. _______________________________Фамилия И.О. ___________
« __ » ____________ 2010 г.
Работа допущена к защите:
Научный руководитель
Должность
« __ » ____________ 2014 г.__________________________ Фамилия И.О.
Заведующий кафедрой
« __ » ____________ 2014 г. _________________________Фамилия И.О.

Список литературы [ всего 10]

СПИСОК ЛИТЕРАТУРЫ
1. Емельянова Н.З., Партыка Т.Л., Попов И.И. Основы построения автоматизированных информационных систем. – М.: Форум, Инфра-М, 2007.
2. Муссиано Ч., Кеннеди Б. HTML и XHTML . Подробное руководство, 6-е издание.
3. Джеффри Д. Ульман, Дженнифер Уидом. Основы реляционных баз данных, Лори, М, 2006 г.
4. Джен Л. Харрингтон. Проектирование реляционных баз данных Лори, 2006 г.
5. Кен Хендерсон. Профессиональное руководство по SQL Server. Структура и реализация (+ CD-ROM), Вильямс, М, 2006 г.
6. Павел Пушкарев. Web script.ru. Управление сайтом. http://webscript.ru/stories/02/01/03/3584690
7. Ачагу Р.М. Характеристика программного продукта. http://synopsis.kubsu.ru/informatic/operator/lecture/theme3_1_1.htm
8. Вендров А.М. Проектирование программного обеспечения экономических информационных систем, Финансы и статистика, М, 2002
9. Министерство здравоохранения Российской Федерации. Гигиенические требования к вычислительной технике, условиям и организации работы, М, 2002 г.
10. Министерство здравоохранения Российской Федерации. Гигиенические требования к вычислительной технике, условиям и организации работы, М, 2002 г.

Очень похожие работы
Пожалуйста, внимательно изучайте содержание и фрагменты работы. Деньги за приобретённые готовые работы по причине несоответствия данной работы вашим требованиям или её уникальности не возвращаются.
* Категория работы носит оценочный характер в соответствии с качественными и количественными параметрами предоставляемого материала. Данный материал ни целиком, ни любая из его частей не является готовым научным трудом, выпускной квалификационной работой, научным докладом или иной работой, предусмотренной государственной системой научной аттестации или необходимой для прохождения промежуточной или итоговой аттестации. Данный материал представляет собой субъективный результат обработки, структурирования и форматирования собранной его автором информации и предназначен, прежде всего, для использования в качестве источника для самостоятельной подготовки работы указанной тематики.
bmt: 0.00896
© Рефератбанк, 2002 - 2024