-
Notifications
You must be signed in to change notification settings - Fork 26
/
Default.aspx
24 lines (22 loc) · 1.03 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>IIO13200 .NET-ohjelmointi</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>IIO13200 .NET-ohjelmointikoe</h1>
<p>Tee websitellä uusi index-sivu, ja tee tehtäville kullekin oma sivu. Nimeä sivut ohjeiden mukaan. Kaikki tarvittavat tehtävissä tarvittavat tiedostot on tallennettava websiten alikansioihin.<br /> Onnea ja menestystä kokeeseen.</p>
<h2>Kokeeseen osallistuvat</h2>
<p>Testataan yhteys Eight-palvelimelle:</p>
<asp:SqlDataSource ID="srcIlmot"
ConnectionString="<%$ ConnectionStrings:Ilmot%>"
SelectCommand="SELECT DISTINCT asioid, lastname, firstname FROM vLasnaolot_IIO13200 ORDER BY lastname "
runat="server"></asp:SqlDataSource>
<asp:GridView ID="myGridView" runat="server" DataSourceID="srcIlmot"></asp:GridView>
</div>
</form>
</body>
</html>