Advertisement
Advertisement
| 05.14.2008 at 07:44AM PDT, ID: 23401607 |
|
[x]
Attachment Details
|
||
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: |
The code of usercontrol BatchProcessHerader.ascx
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="batchprocessheader.ascx.vb" Inherits="batchprocessingsystem.batchprocessheader" %>
<table id="table12" cellpadding="1" width="100%" bgcolor="#ffffcc" border="1">
<tr>
<td>
<table id="table13" width="100%">
<tr>
<td>
<span class="txt">Processor Logged In:
<b><asp:Label ID="lblname" runat="server"></asp:Label></b> | City Link Printer: <b>
<asp:Label ID="lblcitylinkprinter" runat="server"></asp:Label>
</b>
</span>
</td>
<td align="right">
<span class="txt"><a href="">Change User</a></span></td>
</tr>
</table>
</td>
</tr>
</table>
The code of asp.net webform BatchProcessing.aspx
<%@ Register TagPrefix="uc1" TagName="BatchProcessHeader" Src="usercontrols/BatchProcessHeader.ascx" %>
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="BatchOrderProcessing.aspx.vb" Inherits="BatchProcessingSystem.BatchOrderProcessing" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Batch Order Processing</title>
<link href="site.css" type="text/css" rel="stylesheet" />
</head>
<body bgcolor="#ffffff">
<form id="Form1" method="post" runat="server">
<uc1:BatchProcessHeader id="BatchProcessHeader1" runat="server"></uc1:BatchProcessHeader>
<div>
</div>
</form>
</body>
</html>
|