📄 selectproduct.aspx
字号:
<%@ Page language="c#" Codebehind="selectProduct.aspx.cs" AutoEventWireup="false" Inherits="jpgSoftware_SM.SALE.selectProduct" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<title>selectProduct</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
<link href="../styCss/sty1.css" rel="stylesheet" type="text/css">
<link href="../styCss/fontsty.css" rel="stylesheet" type="text/css">
<script language="javascript" type=text/javascript>
function returnValueForProduct(pCode,pCName,price,unit,spec)
{
window.returnValue = pCode+"/"+pCName+"/"+price+"/"+unit+"/"+spec;
window.close();
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout" topmargin="0" leftmargin="0">
<form id="Form1" method="post" runat="server">
<table width="650" height="98%" border="0" cellpadding="0" cellspacing="0" class="hTable_cro">
<tr>
<td valign="top">
<table width="100%" cellpadding="0" cellspacing="0" id=storageTable>
<tr>
<td height="20" colspan="7" align="center" background="../Image/titleLine.gif" class="whitFont">产品列表</td>
</tr>
<tr class="table_botLine" align="center">
<td class="table_botLine table_topLine">产品编号</td>
<td class="table_botLine table_leftLine table_topLine">产品名称</td>
<td class="table_botLine table_leftLine table_topLine">型 号</td>
<td class="table_botLine table_leftLine table_topLine">单 位 </td>
<td class="table_botLine table_leftLine table_topLine">单 价</td>
</tr>
<asp:repeater id="productListRp" runat="server">
<ItemTemplate>
<tr id="NM<%#DataBinder.Eval(Container.DataItem,"FormID")%>" onMouseOver="this.bgColor='LemonChiffon'" onMouseOut="this.bgColor=''"
onClick="javascript:returnValueForProduct('<%#DataBinder.Eval(Container.DataItem,"pCode")%>','<%#DataBinder.Eval(Container.DataItem,"pCName")%>','<%#DataBinder.Eval(Container.DataItem,"price2")%>','<%#DataBinder.Eval(Container.DataItem,"unit")%>','<%#DataBinder.Eval(Container.DataItem,"productSpec")%>')"
>
<td width="92" class="table_botLine "> <%#DataBinder.Eval(Container.DataItem,"pCode")%>
</td>
<td width="167" class="table_botLine table_leftLine"> <%#DataBinder.Eval(Container.DataItem,"pCName")%>
</td>
<td width="134" class="table_botLine table_leftLine"> <%#DataBinder.Eval(Container.DataItem,"productTypeName")%>
</td>
<td width="114" class="table_botLine table_leftLine"> <%#DataBinder.Eval(Container.DataItem,"unit")%>
<td width="128" class="table_botLine table_leftLine"> <%#DataBinder.Eval(Container.DataItem,"price2")%>
</td>
</tr>
</ItemTemplate>
</asp:repeater></table>
</td>
</tr>
</table>
</form>
</body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -