HTML Sayfa2
HTML Sayfa2
cs"
Inherits="Sayfa2BK" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 1276px;
}
</style>
<script>
function renkDegisSecili(obje) {
obje.style.background = "blue";
}
function renkDegisSeciliDegil(obje) {
obje.style.background = "white";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="width:100%;">
<tr>
<td class="auto-style1">
<asp:Label ID="lblKullaniciAdi"
runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="lblSifre" runat="server"></asp:Label>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style1">
<asp:TextBox ID="txtKullAdi"
runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtSifre" runat="server" onClick
="renkDegisSecili(this)" onBlur = "renkDegisSeciliDegil(this)" ></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style1">
<asp:Button ID="butGiris" runat="server" Width="225px"
OnClick="butGiris_Click" />
</td>
<td>
<asp:Label ID="lblMesaj" runat="server"></asp:Label>
</td>
<td> </td>
</tr>
</table>
</div>
</form>
</body>
</html>