使用SQL Server不同的ID来填充同一.net页上的多个表单将不会填充所有表单 [英] using sql server different id's to populate several forms on same .net page will not fill all forms

查看:74
本文介绍了使用SQL Server不同的ID来填充同一.net页上的多个表单将不会填充所有表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法解决或找到问题的解决方案,因此我设计了页面的简化模型来演示我所面临的问题.该表格使工作人员可以打印表格以带到远程工作站点,以获取有关已执行工作的信息,并写出他们尚未完成的工作.

在此模型中,我有四个表用于填充表单. p,pp,b和i.我从后面的代码中填充了一个gridview,以便选择行ID来选择表行以填充我的表单. p主键与pp外键有关(p是一个a到pp多关系)pp主键与b外键有关,而i foregn键(pp一到b和i一关系).

这是我的问题开始的地方.当我在grigview中选择一行时,会填充pp,b和i表,但不会填充p表.这是我的模型代码:


I have not been able to solve or find a solution to my problem so I designed a simplified mock-up of my page to demonstrate the issue that I am facing. This form is so that workers can print a form to take to a remote work site to have info on work already performed and to write in work they are performing not yet completed.

In this mock-up I have four tables that I am using to populate my forms. p, pp, b, and i. I populate a gridview from the code behind in order select the row id''s to pick the table rows to populate my forms. p primary key is related to pp foreign key (p being a one a to pp many relationship) pp primary key is related to b foreign key and i foregn key (pp one to b and i one relationships).

This is where my problem begins. When I select a row in grigview the pp, b and i tables populate but the p table does not. Here is my mock-up code:


<br />
form id=&quot;form1&quot; runat=&quot;server&quot; &gt;<br />
<br />
&lt;div id=&quot;noPrint&quot; class=&quot;noPrint&quot;&gt;<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource1&quot; runat=&quot;server&quot;<br />
<br />
<br />
ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [es] FROM [es]&quot;&gt;<br />
<br />
&lt;/asp:SqlDataSource&gt;<br />
<br />
&lt;asp:Panel ID=&quot;Panel1&quot; runat=&quot;server&quot; Height=&quot;130px&quot; Width=&quot;900px&quot;&gt;<br />
<br />
&lt;h2 id=&quot;H1&quot; runat=&quot;server&quot; style =&quot;font-family : Verdana;&quot;&gt;JWSP&lt;/h2&gt;<br />
<br />
&lt;h3 id=&quot;H2&quot; runat=&quot;server&quot; style =&quot;font-family : Verdana;&quot;&gt;Select E Stage to review jobs then Select Job from grid to display&lt;/h3&gt;<br />
<br />
<br />
<br />
<br />
&lt;asp:CheckBoxList ID=&quot;CheckBoxList&quot; OnSelectedIndexChanged=&quot;CheckBoxes&quot; runat=&quot;server&quot; DataSourceID=&quot;SqlDataSource1&quot; DataTextField=&quot;es&quot; DataValueField=&quot;es&quot; AutoPostBack=&quot;True&quot; Font-Size=&quot;Smaller&quot; RepeatColumns=&quot;5&quot; RepeatDirection=&quot;Vertical&quot; Height=&quot;41px&quot; Width=&quot;900px&quot;&gt;<br />
<br />
<br />
&lt;/asp:CheckBoxList&gt; &lt;h4 style=&quot;font-family: Verdana;&quot;&gt;Select Job to display and print&lt;/h4&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
&lt;br /&gt;<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource2&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; &gt; &lt;/asp:SqlDataSource&gt;<br />
<br />
&lt;br /&gt;<br />
<br />
&lt;asp:Panel ID=&quot;Panel2&quot; runat=&quot;server&quot; HorizontalAlign=&quot;Left&quot; ScrollBars=&quot;Auto&quot; Width=&quot;900px&quot; Height=&quot;152px&quot; &gt;<br />
<br />
<br />
<br />
<br />
&lt;asp:GridView ID=&quot;GridView1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;152px&quot; AllowSorting=&quot;True&quot; AutoGenerateColumns=&quot;False&quot; CellPadding=&quot;0&quot; DataKeyNames=&quot;pid,cbid&quot; DataSourceID=&quot;SqlDataSource2&quot; ForeColor=&quot;#333333&quot; GridLines=&quot;None&quot; Visible=&quot;True&quot; onselectedindexchanged=&quot;GridView1_SelectedIndexChanged&quot;&gt;<br />
<br />
&lt;Columns&gt;<br />
<br />
&lt;asp:CommandField ShowSelectButton=&quot;True&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;cba&quot; HeaderText=&quot;CB Addr&quot; SortExpression=&quot;cba&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;pa&quot; HeaderText=&quot;P Addr&quot; SortExpression=&quot;pa&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;jn&quot; HeaderText=&quot;J Number&quot; SortExpression=&quot;jn&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;es&quot; HeaderText=&quot;E Stage&quot; SortExpression=&quot;es&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;s&quot; HeaderText=&quot;Status&quot; SortExpression=&quot;st&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;cbid&quot; HeaderText=&quot;CB ID&quot; SortExpression=&quot;cbid&quot; /&gt;<br />
<br />
<br />
&lt;asp:BoundField DataField=&quot;pid&quot; HeaderText=&quot;P ID&quot; SortExpression=&quot;pid&quot; /&gt;<br />
<br />
&lt;/Columns&gt;<br />
<br />
&lt;RowStyle BackColor=&quot;#FFFBD6&quot; ForeColor=&quot;#333333&quot; /&gt;<br />
<br />
&lt;FooterStyle BackColor=&quot;#990000&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;White&quot; /&gt;<br />
<br />
&lt;PagerStyle BackColor=&quot;#FFCC66&quot; ForeColor=&quot;#333333&quot; HorizontalAlign=&quot;Center&quot; /&gt;<br />
<br />
&lt;EmptyDataTemplate&gt;<br />
<br />
&lt;table&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td&gt;<br />
<br />
<br />
&lt;textarea id=&quot;Textarea1&quot; runat=&quot;server&quot; rows=&quot;3&quot; cols=&quot;0&quot; style=&quot;width: 900px;font-family: Verdana; font-weight: bold;&quot;&gt;Select an Electrical Stage above to display this grid. You can then select a job to display from the grid rows.&lt;/textarea&gt; &lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/EmptyDataTemplate&gt;<br />
<br />
&lt;SelectedRowStyle BackColor=&quot;#FFCC66&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;Navy&quot; /&gt;<br />
<br />
&lt;HeaderStyle BackColor=&quot;#990000&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;Red&quot; /&gt;<br />
<br />
&lt;AlternatingRowStyle BackColor=&quot;White&quot; /&gt;<br />
<br />
&lt;/asp:GridView&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
<br />
&lt;asp:Panel ID=&quot;Button1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;28px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Left&quot;&gt;<br />
<br />
<br />
<br />
&lt;input runat=&quot;server&quot; type=&quot;button&quot; id=&quot;btnPrintpt&quot; onclick=&quot;window.print()&quot; value=&quot;Print&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;asp:Button ID=&quot;ViewReports&quot; runat=&quot;server&quot; onclick=&quot;ViewReports_Click&quot; Text=&quot;Return To Reports Menu&quot; Width=&quot;174px&quot; style=&quot;background-color: #99CCFF;&quot; /&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
&lt;/div&gt;<br />
<br />
&lt;br /&gt;<br />
<br />
<br />
&lt;div id=&quot;Page1&quot; style=&quot;page-break-inside: avoid; height: 1300px; width: 900px;&quot;&gt;<br />
<br />
<br />
&lt;asp:Panel ID=&quot;Panel3&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;118px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Center&quot;&gt;<br />
<br />
<br />
<br />
&lt;asp:FormView ID=&quot;FormView3&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;118px&quot; DataKeyNames=&quot;cbid&quot; DataSourceID=&quot;SqlDataSource11&quot; SelectedValue=&quot;True&quot; HorizontalAlign=&quot;Left&quot;&gt;<br />
<br />
&lt;ItemTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 540px;&quot; colspan=&quot;3&quot; align=&quot;left&quot;&gt;<br />
Name(s):<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot; align=&quot;left&quot;&gt;<br />
Date:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot; align=&quot;left&quot;&gt;<br />
Day:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Time Start:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Time End:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Hours:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
# Employees:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Total Hours:<br />
&amp;nbsp;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br />
<br />
colspan=&quot;3&quot; align=&quot;left&quot; class=&quot;style52&quot;&gt;<br />
CB Addr<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br />
<br />
align=&quot;left&quot; class=&quot;style53&quot;&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br />
<br />
align=&quot;left&quot; class=&quot;style53&quot;&gt;<br />
W Cntr<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 540px;&quot;<br />
<br />
colspan=&quot;3&quot; align=&quot;left&quot;&gt;<br />
P Addr<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 150px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Juris<br />
<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/ItemTemplate&gt;<br />
<br />
&lt;EmptyDataTemplate&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
<br />
&lt;/EmptyDataTemplate&gt;<br />
<br />
&lt;/asp:FormView&gt;<br />
<br />
<br />
<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource11&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [cbid], [cba], [pa], [cj], [wc] FROM [p] WHERE ([cbid] = @cbid)&quot;&gt;<br />
<br />
&lt;SelectParameters&gt;<br />
<br />
<br />
&lt;asp:ControlParameter ControlID=&quot;GridView1&quot; Name=&quot;cbid&quot; PropertyName=&quot;SelectedValue&quot; Type=&quot;Int32&quot; /&gt;<br />
<br />
&lt;/SelectParameters&gt;<br />
<br />
&lt;/asp:SqlDataSource&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
<br />
&lt;asp:Panel ID=&quot;Panel10&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;210px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Center&quot;&gt;<br />
<br />
<br />
&lt;asp:FormView ID=&quot;FormView1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;159px&quot; DataKeyNames=&quot;pid&quot; HorizontalAlign=&quot;Left&quot; DataSourceID=&quot;SqlDataSource10&quot;&gt;<br />
<br />
&lt;ItemTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
J Number<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;JNumberLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;jn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Page<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MPageLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;mp&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Pw Source<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PSourceLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;ps&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Pw Comp<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PCompLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;pcmp&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px;&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br />
Pw L Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PwLocationLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;pl&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br />
E Pw Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;EPwNotesLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;epn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/ItemTemplate&gt;<br />
<br />
&lt;EmptyDataTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
J Number<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Page<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Pw Source<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
Pw Comp<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px;&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br />
Pw L Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br />
E Pw Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/EmptyDataTemplate&gt;<br />
<br />
&lt;/asp:FormView&gt;<br />
<br />
<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource10&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT pid, mp, ps, pcmp, pl, epn, jn FROM pp WHERE (pid = @pid)&quot;&gt;<br />
<br />
&lt;SelectParameters&gt;<br />
<br />
<br />
&lt;asp:ControlParameter ControlID=&quot;GridView1&quot; Name=&quot;pid&quot; PropertyName=&quot;SelectedValue&quot; Type=&quot;Int32&quot; /&gt;<br />
<br />
&lt;/SelectParameters&gt;<br />
<br />
&lt;/asp:SqlDataSource&gt;<br />
<br />
<br />
&lt;/asp:Panel&gt; &lt;br /&gt;<br />
<br />
<br />
&lt;asp:Panel ID=&quot;Panel4&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;238px&quot; HorizontalAlign=&quot;Left&quot; Wrap=&quot;False&quot;&gt;<br />
<br />
<br />
&lt;asp:FormView ID=&quot;FormView4&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;185px&quot; DataSourceID=&quot;SqlDataSource6&quot; HorizontalAlign=&quot;Right&quot;&gt;<br />
<br />
&lt;ItemTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; color:black;&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br />
C Contr<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;CContrLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;cc&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SD Trans<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;SDTransLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;st&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
D JB<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;DJBLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;djb&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
B L Rcvd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;BLRcvdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;blr&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
P Num<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PNumLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;epn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
P Post<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PPostLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;epp&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot; &gt;<br />
C Type<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;CTypeLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;ct&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
CB Grded<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;CBGrdedLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;cbg&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
C Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;CSetLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;cs&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
C Wi<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;CWiLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;cw&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
<br />
&lt;/td&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
JB Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;JBSetLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;jbs&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
S Wi<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;SWiLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;sw&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br />
B Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;BNotesLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;bn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/ItemTemplate&gt;<br />
<br />
&lt;EmptyDataTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; color:black;&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br />
C Contr<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;ContrLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;cc&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SD Trans<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
D JB<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
B L Rcvd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
P Num<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
P Post<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot; &gt;<br />
C Type<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
CB Grded<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/tr&gt;<br />
<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
C Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
C Wi<br />
<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt; &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
JB Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:225px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
S Wi<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br />
<br />
colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br />
B Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(bd)&lt;/span&gt;:&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/EmptyDataTemplate&gt;<br />
<br />
&lt;/asp:FormView&gt;<br />
<br />
<br />
<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource6&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT bid, st, blr, epn, epp, ct, cbg, cs, cw, jbs, sw, cc, djb, bn FROM b WHERE (pid = @pid)&quot;&gt;<br />
<br />
&lt;SelectParameters&gt;<br />
<br />
<br />
&lt;asp:ControlParameter ControlID=&quot;GridView1&quot; Name=&quot;pid&quot; PropertyName=&quot;SelectedValue&quot; Type=&quot;Int32&quot; /&gt;<br />
<br />
&lt;/SelectParameters&gt;<br />
<br />
&lt;/asp:SqlDataSource&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
<br />
&lt;asp:Panel ID=&quot;Panel11&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;221px&quot; HorizontalAlign=&quot;Left&quot; Wrap=&quot;False&quot;&gt;<br />
<br />
<br />
&lt;asp:FormView ID=&quot;FormView2&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;181px&quot; DataSourceID=&quot;SqlDataSource5&quot; HorizontalAlign=&quot;Right&quot;&gt;<br />
<br />
&lt;ItemTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
1st G Tst<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;&amp;nbsp;&lt;asp:Label ID=&quot;GTstLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;gt1&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
UI Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;UICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;uic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
U Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;UPdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;up&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SI Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;SICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;sic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SI Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;ServiceInspPassedLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;sip&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F G Tst<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;&amp;nbsp;&lt;asp:Label ID=&quot;FGTstLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;gtf&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F I Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;FICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;fic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;FPdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;fip&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MSetLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;ms&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Num<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MNumLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;mn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br />
<br />
colspan=&quot;5&quot; align=&quot;left&quot; class=&quot;style54&quot;&gt;<br />
Is Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;IsNotesLabel&quot; runat=&quot;server&quot; Text=''&lt;% Bind(&quot;isn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/ItemTemplate&gt;<br />
<br />
&lt;EmptyDataTemplate&gt;<br />
<br />
&lt;table class=&quot;style33w&quot;&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
1st G Tst<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;&amp;nbsp;&lt;asp:Label ID=&quot;GTstLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;gt1&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
UI Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;UICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;uic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
U Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;UPdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;up&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SI Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;SICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;sic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
SI Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;ServiceInspPassedLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;sip&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr class=&quot;style45rpt&quot;&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F G Tst<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;&amp;nbsp;&lt;asp:Label ID=&quot;FGTstLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;gtf&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F I Cd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;FICdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;fic&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
F Pd<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;FPdLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;FinalInspPassed&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Set<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MSetLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;ms&quot;,&quot;{0:M/d/yy}&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:180px;&quot;<br />
<br />
align=&quot;left&quot;&gt;<br />
M Num<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MNumLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;mn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
<br />
&lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br />
<br />
colspan=&quot;5&quot; align=&quot;left&quot; class=&quot;style54&quot;&gt;<br />
Is Notes<br />
<br />
&lt;span class=&quot;style1s&quot;&gt;(in)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;IsNotesLabel&quot; runat=&quot;server&quot; Text=''&lt;% Bind(&quot;Isn&quot;) %&gt;'' /&gt;<br />
<br />
&lt;/td&gt;<br />
<br />
&lt;/tr&gt;<br />
<br />
&lt;/table&gt;<br />
<br />
&lt;/EmptyDataTemplate&gt;<br />
<br />
&lt;/asp:FormView&gt;<br />
<br />
<br />
<br />
<br />
&lt;asp:SqlDataSource ID=&quot;SqlDataSource5&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [iid], [pid], [gt1], [uic], [up], [sic], [sip], [gtf], [fic], [fip], [ms], [mn], [insn] FROM [i] WHERE ([pid] = @pid)&quot;&gt;<br />
<br />
&lt;SelectParameters&gt;<br />
<br />
<br />
&lt;asp:ControlParameter ControlID=&quot;GridView1&quot; Name=&quot;pid&quot; PropertyName=&quot;SelectedValue&quot; Type=&quot;Int32&quot; /&gt;<br />
<br />
&lt;/SelectParameters&gt;<br />
<br />
&lt;/asp:SqlDataSource&gt;<br />
<br />
&lt;/asp:Panel&gt;<br />
<br />
&lt;/div&gt;<br />
<br />
&lt;/form&gt;<br />
<br />
and the code behind:<br />
<br />
using<br />
System;<br />
using<br />
System.Collections.Generic;<br />
using<br />
System.Linq;<br />
using<br />
System.Net;<br />
using<br />
System.Net.Mail;<br />
using<br />
System.Web;<br />
using<br />
System.Web.UI;<br />
using<br />
System.Web.UI.WebControls;<br />
public<br />
partial class jwsp : System.Web.UI.Page<br />
{<br />
<br />
{<br />
}<br />
<br />
{<br />
<br />
<br />
<br />
{<br />
<br />
{<br />
str +=<br />
flag = 1;<br />
}<br />
}<br />
<br />
{<br />
str = str.Substring(0, str.Length - 1) +<br />
SqlDataSource2.SelectCommand = str;<br />
GridView1.DataBind();<br />
}<br />
<br />
{<br />
GridView1.Sort(<br />
}<br />
}<br />
<br />
{<br />
}<br />
<br />
protected void Page_Load(object sender, EventArgs e)protected void CheckBoxes(object sender, EventArgs e)string str = &quot;SELECT pp.cbid, pp.pid, pp.es,pp.s, pp.jn, p.cba, p.pa FROM pp INNER JOIN p ON pp.cbid = p.cbid WHERE pp.es IN (&quot;;int flag = 0;foreach (ListItem li in CheckBoxList.Items)if (li.Selected)&quot;''&quot; + li.Text + &quot;'',&quot;;if (flag == 1)&quot;)&quot;;if (IsPostBack)&quot;pa&quot;, System.Web.UI.WebControls.SortDirection.Ascending);protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)<br />


我希望有人可以帮助我在这里解决问题.


I hope someone can help me figure out the issue here. Thanks.

推荐答案

ConnectionStrings:ConnectionString%& gt;" SelectCommand =&从[es]& gt;< br/>中选择[es] < br/> & lt;/asp:SqlDataSource& gt;< br/> < br/> < asp:Panel ID =&"Panel1& quot; runat =&服务器"高度=&"130px&"宽度=&"900px&"< br/> < br/> < h2 id =&"H1&" runat =&服务器"样式=& quot;字体家族:Verdana;" JWSP</h2& gt;< br/> < br/> < h3 id =&"H2&" runat =&服务器" style =" font-family:Verdana;"& gt;选择E Stage来审查作业,然后从网格中选择Job来显示/h3& lt; br/> < br/> < br/> < br/> < br/> & lt; asp:CheckBoxList ID =& quot; CheckBoxList& quot; OnSelectedIndexChanged =& quot; CheckBoxes& quot; runat =&服务器" DataSourceID =& quot; SqlDataSource1& quot; DataTextField =& quot; es& quot; DataValueField =& quot; es& quot; AutoPostBack =&"True&"字体大小=&小& amp;". RepeatColumns =&"5& amp;". RepeatDirection =&垂直&"高度=&"41px&"宽度=&"900px&"< br/> < br/> < br/> & lt;/asp:CheckBoxList& gt; < h4样式="字体家族:Verdana;& quot;选择作业以显示和打印</h4& gt;< br/> < br/> & lt//asp:Panel& gt;< br/> < br/> & lt; br/& gt;< br/> < br/> < br/> & lt; asp:SqlDataSource ID =& quot; SqlDataSource2& quot; runat =&服务器" ConnectionString =&<%
ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [es] FROM [es]&quot;&gt;<br /> <br /> &lt;/asp:SqlDataSource&gt;<br /> <br /> &lt;asp:Panel ID=&quot;Panel1&quot; runat=&quot;server&quot; Height=&quot;130px&quot; Width=&quot;900px&quot;&gt;<br /> <br /> &lt;h2 id=&quot;H1&quot; runat=&quot;server&quot; style =&quot;font-family : Verdana;&quot;&gt;JWSP&lt;/h2&gt;<br /> <br /> &lt;h3 id=&quot;H2&quot; runat=&quot;server&quot; style =&quot;font-family : Verdana;&quot;&gt;Select E Stage to review jobs then Select Job from grid to display&lt;/h3&gt;<br /> <br /> <br /> <br /> <br /> &lt;asp:CheckBoxList ID=&quot;CheckBoxList&quot; OnSelectedIndexChanged=&quot;CheckBoxes&quot; runat=&quot;server&quot; DataSourceID=&quot;SqlDataSource1&quot; DataTextField=&quot;es&quot; DataValueField=&quot;es&quot; AutoPostBack=&quot;True&quot; Font-Size=&quot;Smaller&quot; RepeatColumns=&quot;5&quot; RepeatDirection=&quot;Vertical&quot; Height=&quot;41px&quot; Width=&quot;900px&quot;&gt;<br /> <br /> <br /> &lt;/asp:CheckBoxList&gt; &lt;h4 style=&quot;font-family: Verdana;&quot;&gt;Select Job to display and print&lt;/h4&gt;<br /> <br /> &lt;/asp:Panel&gt;<br /> <br /> &lt;br /&gt;<br /> <br /> <br /> &lt;asp:SqlDataSource ID=&quot;SqlDataSource2&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%


ConnectionStrings:ConnectionString%&" & gt; & lt;/asp:SqlDataSource& gt;< br/> < br/> & lt; br/& gt;< br/> < br/> < asp:面板ID =& quot; Panel2& quot; runat =&服务器" Horizo​​ntalAlign =&"Left&" ScrollBars =&自动"宽度=&"900px&"高度=&"152px&" & gt; br/> < br/> < br/> < br/> < br/> & lt; asp:GridView ID =& quot; GridView1& quot; runat =&服务器"宽度=&"900px&"高度=&"152px&" AllowSorting =&"True&" AutoGenerateColumns =&假& amp;". CellPadding =&"0" DataKeyNames =& quot; pid,cbid& quot; DataSourceID =& quot; SqlDataSource2& quot; ForeColor =& quot;#333333& quot; GridLines =&无" Visible =&"True&" onselectedindexchanged =& quot; GridView1_SelectedIndexChanged& gt;< br/> < br/> & lt;列& gt;< br/> < br/> & lt; asp:CommandField ShowSelectButton =& quot; True& quot; /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =&"cba&" HeaderText =&"CB地址". SortExpression =&"cba&" /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =&"pa& quot; HeaderText =& quot; P Addr& quot; SortExpression =&"pa&" /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =&"jn&" HeaderText =&"J编号&"; SortExpression =&"jn&" /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =& quot; es& quot; HeaderText =&"E Stage&" SortExpression =& quot; es& quot; /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =& quot; s& quot; HeaderText =&状态&" SortExpression =&"st&" /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =&"cbid&" HeaderText =&"CB ID&" SortExpression =&"cbid&" /& gt;< br/> < br/> < br/> & lt; asp:BoundField DataField =&"pid& quot; HeaderText =&"P ID&". SortExpression =&"pid& amp;" /& gt;< br/> < br/> & lt;/Columns& gt;< br/> < br/> & lt; RowStyle BackColor =& quot;#FFFBD6& quot; ForeColor =& quot;#333333& quot; /& gt;< br/> < br/> & lt; FooterStyle BackColor =& quot;#990000& quot; Font-Bold =& quot; True& quot; ForeColor =&白色". /& gt;< br/> < br/> & lt; PagerStyle BackColor =& quot;#FFCC66& quot; ForeColor =& quot;#333333& quot; Horizo​​ntalAlign =&"Center&" /& gt;< br/> < br/> & lt; EmptyDataTemplate& gt;< br/> < br/> & lt; table& gt;< br/> < br/> & lt; tr& gt;< br/> < br/> & lt; td& gt;< br/> < br/> < br/> & lt; textarea id =& quot; Textarea1& quot; runat =&服务器"行="3". cols =&"0" style =& quot;宽度:900px;字体系列:Verdana; font-weight:粗体"& gt;在上面选择一个电子平台以显示此网格.然后,您可以从网格行中选择要显示的作业. & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt//table& gt;< br/> < br/> & lt;/EmptyDataTemplate& gt;< br/> < br/> & lt; SelectedRowStyle BackColor =& quot;#FFCC66& quot; Font-Bold =& quot; True& quot; ForeColor =&海军"& /& gt;< br/> < br/> & lt; HeaderStyle BackColor =& quot;#990000& quot; Font-Bold =& quot; True& quot; ForeColor =&红色". /& gt;< br/> < br/> & lt; AlternatingRowStyle BackColor =&"White& quot; /& gt;< br/> < br/> & lt;/asp:GridView& gt;< br/> < br/> & lt//asp:Panel& gt;< br/> < br/> < br/> & lt; asp:Panel ID =& quot; Button1& quot; runat =&服务器"宽度=&"900px&"高度=&"28px&" Direction =&"LeftToRight&" Horizo​​ntalAlign =&"Left& gt;< br/> < br/> < br/> < br/> < input runat =&服务器&" type =& quot;按钮& quot; id =& quot; btnPrintpt& quot; onclick =& quot; window.print()& quot;值=&打印&" /& amp; amp; nbsp;& amp; amp; nbsp; & lt; asp:Button ID =& quot; ViewReports& quot; runat =&服务器" onclick =& quot; ViewReports_Click& quot;文字="返回报告菜单"宽度=&"174px&" style =& quot; background-color:#99CCFF;" /& gt;< br/> < br/> & lt//asp:Panel& gt;< br/> < br/> & lt//div& gt;< br/> < br/> & lt; br/& gt;< br/> < br/> < br/> & lt; div id =& quot; Page1& quot; style =&"page-break-inside:避免;高度:1300px;宽度:900px;& quot;< br/> < br/> < br/> < asp:面板ID =& quot; Panel3& quot; runat =&服务器"宽度=&"900px&"高度=&"118px&" Direction =&"LeftToRight&" Horizo​​ntalAlign =&"Center& gt;< br/> < br/> < br/> < br/> & lt; asp:FormView ID =& quot; FormView3& quot; runat =&服务器"宽度=&"900px&"高度=&"118px&" DataKeyNames =& quot; cbid& quot; DataSourceID =& quot; SqlDataSource11& quot; SelectedValue =& quot;真实& quot; Horizo​​ntalAlign =&"Left& gt;< br/> < br/> & lt; ItemTemplate& gt;< br/> < br/> & lt; table class =& quot; style33w& quot;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:540px;" colspan =&"3" align =& quot; left& gt;< br/> 名称:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;" align =& quot; left& gt;< br/> 日期:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < br/> < td样式=&边框底样式:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;" align =& quot; left& gt;< br/> 日:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =& quot; left& gt;< br/> 时间开始:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =& quot; left& gt;< br/> 时间结束:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =&"left& gt;< br/> 时间:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =& quot; left& gt;< br/> #员工:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =& quot; left& gt;< br/> 总时数:< br/> & amp; nbsp;< br/> < br/> & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < td style =&边界底部:薄实心#000000;< br/> < br/> colspan =&"3" align =&"left&" class =& quot; style52& gt;< br/> CB地址
< br/> < span class =& quot; style1s& gt;(pa)</span& gt ::</td& gt;< br/> < br/> < td style =&边框底部:薄实心#000000;< br/> < br/> align =&"left&" class =& quot; style53& gt;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&边界底部:薄实心#000000;< br/> < br/> align =&"left&" class =& quot; style53& gt;< br/> W Cntr< br/> < br/> < span class =& quot; style1s& gt;(pa)</span& gt ::</td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:540px;< br/> < br/> colspan =&"3" align =& quot; left& gt;< br/> P Addr< br/> < br/> < span class =& quot; style1s& gt;(pa)</span& gt ::</td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:180px;&< br/> < br/> align =& quot; left& gt;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:150px;&< br/> < br/> align =& quot; left& gt;< br/> 朱丽斯< br/> < br/> < br/> < span class =& quot; style1s& gt;(pa)</span& gt;:</tr& gt;< br/> < br/> & lt//table& gt;< br/> < br/> & lt;/ItemTemplate& gt;< br/> < br/> & lt; EmptyDataTemplate& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> < br/> & lt;/EmptyDataTemplate& gt;< br/> < br/> & lt;/asp:FormView& gt;< br/> < br/> < br/> < br/> < br/> < br/> & lt; asp:SqlDataSource ID =& quot; SqlDataSource11& quot; runat =&服务器" ConnectionString =&<%
ConnectionStrings:ConnectionString %&gt;&quot; &gt; &lt;/asp:SqlDataSource&gt;<br /> <br /> &lt;br /&gt;<br /> <br /> &lt;asp:Panel ID=&quot;Panel2&quot; runat=&quot;server&quot; HorizontalAlign=&quot;Left&quot; ScrollBars=&quot;Auto&quot; Width=&quot;900px&quot; Height=&quot;152px&quot; &gt;<br /> <br /> <br /> <br /> <br /> &lt;asp:GridView ID=&quot;GridView1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;152px&quot; AllowSorting=&quot;True&quot; AutoGenerateColumns=&quot;False&quot; CellPadding=&quot;0&quot; DataKeyNames=&quot;pid,cbid&quot; DataSourceID=&quot;SqlDataSource2&quot; ForeColor=&quot;#333333&quot; GridLines=&quot;None&quot; Visible=&quot;True&quot; onselectedindexchanged=&quot;GridView1_SelectedIndexChanged&quot;&gt;<br /> <br /> &lt;Columns&gt;<br /> <br /> &lt;asp:CommandField ShowSelectButton=&quot;True&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;cba&quot; HeaderText=&quot;CB Addr&quot; SortExpression=&quot;cba&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;pa&quot; HeaderText=&quot;P Addr&quot; SortExpression=&quot;pa&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;jn&quot; HeaderText=&quot;J Number&quot; SortExpression=&quot;jn&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;es&quot; HeaderText=&quot;E Stage&quot; SortExpression=&quot;es&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;s&quot; HeaderText=&quot;Status&quot; SortExpression=&quot;st&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;cbid&quot; HeaderText=&quot;CB ID&quot; SortExpression=&quot;cbid&quot; /&gt;<br /> <br /> <br /> &lt;asp:BoundField DataField=&quot;pid&quot; HeaderText=&quot;P ID&quot; SortExpression=&quot;pid&quot; /&gt;<br /> <br /> &lt;/Columns&gt;<br /> <br /> &lt;RowStyle BackColor=&quot;#FFFBD6&quot; ForeColor=&quot;#333333&quot; /&gt;<br /> <br /> &lt;FooterStyle BackColor=&quot;#990000&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;White&quot; /&gt;<br /> <br /> &lt;PagerStyle BackColor=&quot;#FFCC66&quot; ForeColor=&quot;#333333&quot; HorizontalAlign=&quot;Center&quot; /&gt;<br /> <br /> &lt;EmptyDataTemplate&gt;<br /> <br /> &lt;table&gt;<br /> <br /> &lt;tr&gt;<br /> <br /> &lt;td&gt;<br /> <br /> <br /> &lt;textarea id=&quot;Textarea1&quot; runat=&quot;server&quot; rows=&quot;3&quot; cols=&quot;0&quot; style=&quot;width: 900px;font-family: Verdana; font-weight: bold;&quot;&gt;Select an Electrical Stage above to display this grid. You can then select a job to display from the grid rows.&lt;/textarea&gt; &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;/table&gt;<br /> <br /> &lt;/EmptyDataTemplate&gt;<br /> <br /> &lt;SelectedRowStyle BackColor=&quot;#FFCC66&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;Navy&quot; /&gt;<br /> <br /> &lt;HeaderStyle BackColor=&quot;#990000&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;Red&quot; /&gt;<br /> <br /> &lt;AlternatingRowStyle BackColor=&quot;White&quot; /&gt;<br /> <br /> &lt;/asp:GridView&gt;<br /> <br /> &lt;/asp:Panel&gt;<br /> <br /> <br /> &lt;asp:Panel ID=&quot;Button1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;28px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Left&quot;&gt;<br /> <br /> <br /> <br /> &lt;input runat=&quot;server&quot; type=&quot;button&quot; id=&quot;btnPrintpt&quot; onclick=&quot;window.print()&quot; value=&quot;Print&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;asp:Button ID=&quot;ViewReports&quot; runat=&quot;server&quot; onclick=&quot;ViewReports_Click&quot; Text=&quot;Return To Reports Menu&quot; Width=&quot;174px&quot; style=&quot;background-color: #99CCFF;&quot; /&gt;<br /> <br /> &lt;/asp:Panel&gt;<br /> <br /> &lt;/div&gt;<br /> <br /> &lt;br /&gt;<br /> <br /> <br /> &lt;div id=&quot;Page1&quot; style=&quot;page-break-inside: avoid; height: 1300px; width: 900px;&quot;&gt;<br /> <br /> <br /> &lt;asp:Panel ID=&quot;Panel3&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;118px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Center&quot;&gt;<br /> <br /> <br /> <br /> &lt;asp:FormView ID=&quot;FormView3&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;118px&quot; DataKeyNames=&quot;cbid&quot; DataSourceID=&quot;SqlDataSource11&quot; SelectedValue=&quot;True&quot; HorizontalAlign=&quot;Left&quot;&gt;<br /> <br /> &lt;ItemTemplate&gt;<br /> <br /> &lt;table class=&quot;style33w&quot;&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 540px;&quot; colspan=&quot;3&quot; align=&quot;left&quot;&gt;<br /> Name(s):<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot; align=&quot;left&quot;&gt;<br /> Date:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot; align=&quot;left&quot;&gt;<br /> Day:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Time Start:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Time End:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Hours:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> # Employees:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Total Hours:<br /> &amp;nbsp;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> &lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br /> <br /> colspan=&quot;3&quot; align=&quot;left&quot; class=&quot;style52&quot;&gt;<br /> CB Addr<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br /> <br /> align=&quot;left&quot; class=&quot;style53&quot;&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom: thin solid #000000;&quot;<br /> <br /> align=&quot;left&quot; class=&quot;style53&quot;&gt;<br /> W Cntr<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 540px;&quot;<br /> <br /> colspan=&quot;3&quot; align=&quot;left&quot;&gt;<br /> P Addr<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 180px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 150px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Juris<br /> <br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pa)&lt;/span&gt;:&lt;/tr&gt;<br /> <br /> &lt;/table&gt;<br /> <br /> &lt;/ItemTemplate&gt;<br /> <br /> &lt;EmptyDataTemplate&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> <br /> &lt;/EmptyDataTemplate&gt;<br /> <br /> &lt;/asp:FormView&gt;<br /> <br /> <br /> <br /> <br /> <br /> &lt;asp:SqlDataSource ID=&quot;SqlDataSource11&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%


ConnectionStrings:ConnectionString%&" SelectCommand =" SELECT [cbid],[cba],[pa],[cj],[wc] FROM [p] WHERE([cbid] = @cbid)& lt; br /> < br/> & lt; SelectParameters& gt;< br/> < br/> < br/> < asp:ControlParameter ControlID =& quot; GridView1& quot;名称=" cbid&" PropertyName =& quot; SelectedValue& quot;类型=&"Int32&". /& gt;< br/> < br/> & lt//SelectParameters& gt;< br/> < br/> & lt;/asp:SqlDataSource& gt;< br/> < br/> & lt//asp:Panel& gt;< br/> < br/> < br/> < asp:Panel ID =& quot; Panel10& amp; quot; runat =&服务器"宽度=&"900px&"高度=&"210px&" Direction =&"LeftToRight&" Horizo​​ntalAlign =&"Center& gt;< br/> < br/> < br/> & lt; asp:FormView ID =& quot; FormView1& quot; runat =&服务器"宽度=&"900px&"高度=&"159px&" DataKeyNames =& quot; pid& quot; Horizo​​ntalAlign =&"Left&" DataSourceID =&"SqlDataSource10&"& gt;< br/> < br/> & lt; ItemTemplate& gt;< br/> < br/> & lt; table class =& quot; style33w& quot;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =&"left& gt;< br/> J号< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; JNumberLabel& quot; runat =&服务器" Text =''& lt;%#Bind(&"jn&))%& gt;''/&< br/> < br/> & lt//td& gt;< br/> < br/> < td样式=&边框底样式:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> M页面< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; MPageLabel& quot; runat =&服务器" Text =''& lt;%#Bind(& amp; mp; amp; quot;)%& gt;''/& gt;< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> Pw来源< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; PSourceLabel& quot; runat =&服务器" Text =''& lt;%#Bind(& ps& quot;)%& gt;''/&< br/> < br/> & lt//td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> Pw Comp< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; PCompLabel& quot; runat =&服务器" Text =''& lt;%#Bind(& quot; pcmp& quot;)%& gt;''/& gt;< br/> < br/> & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:900像素;高度:87px;& quot;< br/> < br/> colspan =&"4" align =&"left&" & gt; br/> Pw L笔记< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; PwLocationLabel& quot; runat =&服务器" Text =''& lt;%#Bind(& quot; pl& quot;)%& gt;''/&< br/> < br/> & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:900px;高度:87px& quot;< br/> < br/> colspan =&"4" align =& quot; left& gt;< br/> E Pw注释< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt ::& amp; lt; asp:标签ID =& quot; ; EPwNotesLabel& quot; runat =&服务器" Text =''& lt;%#Bind(& quot; epn& quot;)%& gt;''/&< br/> < br/> & lt//td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt//table& gt;< br/> < br/> & lt;/ItemTemplate& gt;< br/> < br/> & lt; EmptyDataTemplate& gt;< br/> < br/> & lt; table class =& quot; style33w& quot;< br/> < br/> & lt; tr class =& quot; style45rpt& quot;& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =&"left& gt;< br/> J号< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> M页面< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> < td样式=&边框底样式:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> Pw来源< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:225px;< br/> < br/> align =& quot; left& gt;< br/> Pw Comp< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:900像素;高度:87px;& quot;< br/> < br/> colspan =&"4" align =&"left&" & gt; br/> Pw L笔记< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt; tr& gt;< br/> < br/> < td style =&"border-bottom-style:实心; border-bottom-width:薄;边框底色:#000000;宽度:900像素;高度:87px& quot;< br/> < br/> colspan =&"4" align =&"left& gt;< br/> E Pw注释< br/> < br/> < span class =& quot; style1s& gt;(pw)</span& gt;:</td& gt;< br/> < br/> & lt//tr& gt;< br/> < br/> & lt//table& gt;< br/> < br/> & lt;/EmptyDataTemplate& gt;< br/> < br/> & lt;/asp:FormView& gt;< br/> < br/> < br/> < br/> < br/> & lt; asp:SqlDataSource ID =& quot; SqlDataSource10& quot; runat =&服务器" ConnectionString =&& lt;%
ConnectionStrings:ConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [cbid], [cba], [pa], [cj], [wc] FROM [p] WHERE ([cbid] = @cbid)&quot;&gt;<br /> <br /> &lt;SelectParameters&gt;<br /> <br /> <br /> &lt;asp:ControlParameter ControlID=&quot;GridView1&quot; Name=&quot;cbid&quot; PropertyName=&quot;SelectedValue&quot; Type=&quot;Int32&quot; /&gt;<br /> <br /> &lt;/SelectParameters&gt;<br /> <br /> &lt;/asp:SqlDataSource&gt;<br /> <br /> &lt;/asp:Panel&gt;<br /> <br /> <br /> &lt;asp:Panel ID=&quot;Panel10&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;210px&quot; Direction=&quot;LeftToRight&quot; HorizontalAlign=&quot;Center&quot;&gt;<br /> <br /> <br /> &lt;asp:FormView ID=&quot;FormView1&quot; runat=&quot;server&quot; Width=&quot;900px&quot; Height=&quot;159px&quot; DataKeyNames=&quot;pid&quot; HorizontalAlign=&quot;Left&quot; DataSourceID=&quot;SqlDataSource10&quot;&gt;<br /> <br /> &lt;ItemTemplate&gt;<br /> <br /> &lt;table class=&quot;style33w&quot;&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> J Number<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;JNumberLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;jn&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> M Page<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;MPageLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;mp&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Pw Source<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PSourceLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;ps&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Pw Comp<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PCompLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;pcmp&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px;&quot;<br /> <br /> colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br /> Pw L Notes<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;PwLocationLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;pl&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br /> <br /> colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br /> E Pw Notes<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&amp;nbsp;&lt;asp:Label ID=&quot;EPwNotesLabel&quot; runat=&quot;server&quot; Text=''&lt;%# Bind(&quot;epn&quot;) %&gt;'' /&gt;<br /> <br /> &lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;/table&gt;<br /> <br /> &lt;/ItemTemplate&gt;<br /> <br /> &lt;EmptyDataTemplate&gt;<br /> <br /> &lt;table class=&quot;style33w&quot;&gt;<br /> <br /> &lt;tr class=&quot;style45rpt&quot;&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> J Number<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> M Page<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Pw Source<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width: 225px;&quot;<br /> <br /> align=&quot;left&quot;&gt;<br /> Pw Comp<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px;&quot;<br /> <br /> colspan=&quot;4&quot; align=&quot;left&quot; &gt;<br /> Pw L Notes<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;tr&gt;<br /> <br /> &lt;td style=&quot;border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #000000; width:900px; height:87px&quot;<br /> <br /> colspan=&quot;4&quot; align=&quot;left&quot;&gt;<br /> E Pw Notes<br /> <br /> &lt;span class=&quot;style1s&quot;&gt;(pw)&lt;/span&gt;:&lt;/td&gt;<br /> <br /> &lt;/tr&gt;<br /> <br /> &lt;/table&gt;<br /> <br /> &lt;/EmptyDataTemplate&gt;<br /> <br /> &lt;/asp:FormView&gt;<br /> <br /> <br /> <br /> <br /> &lt;asp:SqlDataSource ID=&quot;SqlDataSource10&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%


这篇关于使用SQL Server不同的ID来填充同一.net页上的多个表单将不会填充所有表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆