Поможем написать учебную работу
Если у вас возникли сложности с курсовой, контрольной, дипломной, рефератом, отчетом по практике, научно-исследовательской и любой другой работой - мы готовы помочь.
Если у вас возникли сложности с курсовой, контрольной, дипломной, рефератом, отчетом по практике, научно-исследовательской и любой другой работой - мы готовы помочь.
Завдання 1
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Хто ти такий?"></asp:Label>
<br />
<br />
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem Value="Воно"></asp:ListItem>
<asp:ListItem Value="Чоловік"></asp:ListItem>
<asp:ListItem Value="Жінка"></asp:ListItem>
</asp:DropDownList>
<br />
<br />
<asp:Label ID="Label2" runat="server" Text="Вибери шось"></asp:Label>
<br />
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
int i;
i = DropDownList1.SelectedIndex;
switch (DropDownList1.Items[i].Value)
{
case "Воно": Label2.Text = "Ой, хто ви?"; break;
case "Чоловік": Label2.Text = "Я думаю що ви це він"; break;
case "Жінка": Label2.Text = "Я думаю що ви це вона"; break;
default: Label2.Text = "Вибери шось"; break;
}
}
}
Завдання 2
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label ID="Label1" runat="server" Text="Як вас звати?"></asp:Label>
<br />
<br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Відповісти" />
<br />
<br />
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string s = TextBox1.Text;
string s2 = s.Substring(s.Length - 1);
if ((s2 == "й") || (s2 == "р") || (s2 == "н") || (s2 == "в"))
Label2.Text = "Напевно чоловік";
else if ((s2 == "а") || (s2 == "я"))
Label2.Text = "Напевно жінка";
}
}
Завдання 3
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Скільки днів ти прожив"></asp:Label>
<br />
<br />
<asp:Label ID="Label2" runat="server" Text="Як тебе звати:"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<br />
<br />
<asp:Label ID="Label3" runat="server" Text="Скільки тобі років:"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<br />
<br />
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Відповісти" />
<br />
<br />
<asp:Label ID="Label4" runat="server" Text="Результат"></asp:Label>
<br />
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string c;
c = TextBox2.Text;
int a = Convert.ToInt16(c)*365;
string b = TextBox1.Text;
Label4.Text = b + ", ти напевно прожив " + a + " днів";
}
}
Завдання 4
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:CheckBoxList ID="CheckBoxList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="CheckBoxList1_SelectedIndexChanged">
<asp:ListItem Value="Ukrainian"></asp:ListItem>
<asp:ListItem Value="English"></asp:ListItem>
</asp:CheckBoxList>
<br />
<asp:Label ID="Label1" runat="server" Text="result"></asp:Label>
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{ }
protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
{
if ((CheckBoxList1.Items[0].Selected == true) && (CheckBoxList1.Items[1].Selected != true)) Label1.Text = "ПРИВІТ!";
else
if ((CheckBoxList1.Items[1].Selected == true) && (CheckBoxList1.Items[0].Selected != true)) Label1.Text = "HELLO!";
else
if ((CheckBoxList1.Items[0].Selected == true) && (CheckBoxList1.Items[1].Selected == true)) Label1.Text = "ПРИВІТ!HELLO!";
}
}
Завдання 5
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem Value="picture 1"></asp:ListItem>
<asp:ListItem Value="picture 2"></asp:ListItem>
</asp:DropDownList>
<br />
<br />
<asp:Image ID="Image1" runat="server" Height="78px" Width="132px" />
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (DropDownList1.Items[0].Selected == true) { Image1.ImageUrl = "1.bmp"; }
if (DropDownList1.Items[1].Selected == true) { Image1.ImageUrl = "2.bmp"; }
}
}