-
Notifications
You must be signed in to change notification settings - Fork 0
/
urunler-ekle.aspx
executable file
·109 lines (86 loc) · 2.41 KB
/
urunler-ekle.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="urunler-ekle.aspx.cs" Inherits="urunler_ekle" EnableEventValidation="false"%>
<%@ Register src="~/ascx/sitil.ascx" TagPrefix="include" TagName="sitil"%>
<%@ Register src="~/ascx/ust.ascx" TagPrefix="include" TagName="ust"%>
<%@ Register src="~/ascx/menu.ascx" TagPrefix="include" TagName="menu"%>
<%@ Register src="~/ascx/alt.ascx" TagPrefix="include" TagName="alt"%>
<include:sitil ID="sitil" runat="server"/>
<include:ust ID="ust" runat="server"/>
<!--SCRIPTS-->
<script type="text/javascript" src="js/urunler.js"></script>
<!--SCRIPTS-->
<!--ANA DIV-->
<div id="orta">
<!--ORTA DIV-->
<div id="orta_ic">
<!--SOL KISIM-->
<div id="sol">
<include:menu ID="menu" runat="server"/>
</div>
<!--SOL KISIM-->
<!--SAG KISIM-->
<div id="sag_dis">
<!--SAYFA BASLIGI-->
<asp:panel runat="server" id="baslik_getir"></asp:panel>
<!--SAYFA BASLIGI-->
<div id="sag">
<!--FORM-->
<form id="form1" runat="server">
<fieldset>
<!--SAG IC-->
<div id="ic">
<!--MESAJ-->
<asp:panel runat="server" id="mesaj_getir"></asp:panel>
<!--MESAJ-->
<!--BASLANGIC-->
<div class="beyaz">
<table id="tbl1" summary="" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="tdb2"><h3><img src="images/ikon/folder-open.png" class="ikon" alt=""/> Ürünler > Ekle</h3></td>
</tr>
</tbody>
</table>
<table summary="" cellspacing="0" cellpadding="0" class="margin5">
<tbody>
<tr>
<td width="165" class="tdb">* Adı</td>
<td><input type="text" id="urun" name="urun" maxlength="255" class="input"/></td>
</tr>
<tr>
<td width="165" class="tdb">Kodu</td>
<td><input type="text" id="kod" name="kod" maxlength="255" class="input"/></td>
</tr>
</tbody>
</table>
<table summary="" cellspacing="0" cellpadding="0" class="margin5">
<tbody>
<tr>
<td width="165" class="tdb">İşlem Yap. Yön.</td>
<td><asp:label id="admin_id" runat="server" /></td>
</tr>
</tbody>
</table>
<table id="tbl_gonder" summary="" cellspacing="0" cellpadding="0" class="margin5">
<tbody>
<tr>
<td align="center"><asp:Button ID="gonder" runat="server" Text="Ekle" CssClass="input2" onclick="submit_Click" /></td>
</tr>
</tbody>
</table>
</div>
<!--BASLANGIC-->
</div>
<!--SAG IC-->
</fieldset>
</form>
<!--FORM-->
</div>
</div>
<!--SAG KISIM-->
</div>
<!--ORTA DIV-->
</div>
<!--ANA DIV-->
<include:alt ID="alt" runat="server"/>
</body>
</html>